[ADMN] AntiDrops - Stop players from dropping items! [BukkitDev]

Discussion in 'Archived: Plugin Releases' started by YoshiGenius, Mar 2, 2012.

  1. Offline

    YoshiGenius

    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.
     
    Pwninz likes this.
  2. Offline

    wannezz

    Why would someone want to block item drops?
     
  3. Offline

    YoshiGenius

    Reasons may include:

    - Don't want players dropping items (creative server)

    - Don't want lag.

    - Want different combinations of options.
     
  4. Offline

    beastycraft

    Perfect for my server, Thanks!

    By the way its to stop survival players sharing items during quests as its an RPG server:)
    Thanks again!
     
  5. Offline

    chunkaymonkay

    YoshiGenius add a config that you can choose what items can be dropped
     
  6. Offline

    YoshiGenius

  7. Offline

    Novice

    It'll help many servers, like @beastycraft's server.
    Thank you.
     
  8. YoshiGenius This Is Too Easy To Make You Just Need One EventHandler
    Code:java
    1. @EventHandler
    2. public void onPlayerDropItem(PlayerDropItemEvent e) {
    3. Player p = e.getPlayer();
    4. if(p.isOp() || p.hasPermission("AntiDrops.DropItem") {
    5. //Let Them Drop The Item
    6. }else{
    7. e.setCancelled(true);
    8. }
    9.  
    10. }
     
  9. Offline

    YoshiGenius

    Incorrect. If you look at the BukkitDev page, HERE, you will see that there are plenty more features.
     
  10. YoshiGenius
    Sorry I Didint See The Creative Part xD
    But The Anti Drop Part Is Easy
     
  11. Offline

    Pwninz

    Great Idea for Creative servers, I like it!
     

Share This Page