Hello, i've a problem with my server, I'm on Spigot 1.8.3 and i don't find a plugin who will won't give the permission to users to drop on only the spawn. I've find PancakeHub or Hubbasics but it's for all maps and i don't have Bungee.. Thank you and sorry for my bad english..
Do you mean having a permission to be able to drop items? It's a extremely quick and easy code, less then 5 lines depending if you want a permission and or a message sent to the player. Sorry if I interpreted this wrong
its really easy Code (Text): public class Drop extends JavaPlugin implements Listener { public void onEnable() { getServer().getPluginManager().registerEvents(this, this) } @EventHandler public void noDrop(PlayerDropEvent e) { e.setcancled(true) } } You may need to add another bracket at the end and import everything, but just add that under your package: import everything, save everything and you should be good, I wrote this on my phone so I may have missed something sorry
@Bear53 Not every player should code plugins ^^ Maybe it's better if you (or any other spigot-user) compiles it for him ^^