AntiDrops is a plugin that enables a server admin (you) to stop players (users) from dropping items and blocks. Made By: YoshiGenius dev.bukkit.org: http://dev.bukkit.org/server-mods/antidrops/ Built against: craftbukkit-1.3.1-R2.0 This thread will NOT be updated... much. Please use the dev.bukkit.org thread for all queries, suggestions, etc. Incompatible Plugins: - None known. To-Do: - Please suggest new ideas on the dev.bukkit.org page. Changelog: See BukkitDev page.
Reasons may include: - Don't want players dropping items (creative server) - Don't want lag. - Want different combinations of options.
Perfect for my server, Thanks! By the way its to stop survival players sharing items during quests as its an RPG server Thanks again!
YoshiGenius This Is Too Easy To Make You Just Need One EventHandler Code:java @EventHandlerpublic void onPlayerDropItem(PlayerDropItemEvent e) {Player p = e.getPlayer();if(p.isOp() || p.hasPermission("AntiDrops.DropItem") {//Let Them Drop The Item}else{e.setCancelled(true);} }
Incorrect. If you look at the BukkitDev page, HERE, you will see that there are plenty more features.