I need a plugin that disables all drops. Including Death Drops and Throwing Items. Also I want players to be able to drop items, just have the items get deleted. I need this plugin don relatively fast, but don't feel rushed. Thanks Jaice
sure done ill edit when I get a download up KitWarfare <Edit by Moderator: Redacted mediafire url> and source will be up in a sec Assuming You can make a listener, it would take 3 lines of code to do this (You don't really need the @EventHandler) Code: @EventHandler public void entityDrop (ItemSpawnEvent e) { e.setCancelled(true); } Yes that is it ^_^