
zSpawner
3.0.2.1Simply manage your spawners with a inventory ! Perfect for any type of server!
Last release: 2.1.0.1
You must download version 2.1.0.1 to have the latest version of the plugin, this is a pre release, I do not recommend using it on your server but only do tests on it, if you have any suggestions come and offer them to me on discord https://discord.gg/eQPZpuC

Discord: https://discord.gg/eQPZpuC
You can also add your own plugin like this:
[CODE="java"]
public class ClassExemple implements Listener {
@EventHandler
public void onRegister(SpawnerRegisterEvent event) {
event.setFactionListener(new LegacyFaction());
}
public class LegacyFaction extends FactionListener {
@Override
public boolean canBuild(Player player, Location location) {
@SuppressWarnings("deprecation")
String tag = Board.get().getFactionAt(new FLocation(location)).getTag();
String playerTag = FPlayerColl.get(player).getFaction().getTag();
return tag.equals(playerTag);
}
}
}
[/CODE]