Deny Dropping Items in area

Discussion in 'Bukkit Help' started by NotYetRated, Feb 1, 2012.

Thread Status:
Not open for further replies.
  1. Offline

    NotYetRated

    Is there a way to deny dropping all items in specified areas? I dont see an option in worldguard for this...

    I currently have a type of exploit issue where players are using the /warhub teleport to go and do their trading. I dont want to make /warhub hard to access, so i allow its use everywhere. But, I want to force players to walk to eachothers towns and such to do their trading... Any ways of this?
     
  2. Offline

    MetalMadness

    This post is sorta helpful.
    I'm almost 100% there is NO deny dropping.
    BUT
    There might be something that can whipe all floating items instantly. Try searching for that. (i am right now, il update if I find something)
     
    NotYetRated likes this.
  3. Offline

    NotYetRated

    Ahhh I had not thought of that.... Thanks for the idea MetalMadness, will let you know if I find anything!
     
    MetalMadness likes this.
  4. Offline

    Rathfon

    You will have to have a custom listener for this, problem in another plugin. It can be checked through the ItemSpawnEvent and if its in range of a defined area, can be removed immediately.
     
  5. Offline

    zipron

    No deny dropping? read the 7th line.. anyways, that is using the blacklist, and I do not think that you can bind it to a region using flags. Also there is no flag available for it (maybe you can request it to make it)

    Code:
    # Events that you can detect:
    # - on-break (when a block of this type is about to be broken)
    # - on-destroy-with (the item/block held by the user while destroying)
    # - on-place (a block is being placed)
    # - on-use (an item like flint and steel or a bucket is being used)
    # - on-interact (when a block in used (doors, chests, etc.))
    # - on-drop (an item is being dropped from the player's inventory)
    # - on-acquire (an item enters a player's inventory via some method)
    zip
     
  6. Offline

    MetalMadness

    Never knew there was an on-drop event.
     
  7. Offline

    rmsy

    You can use a region-specific permissions plugin to add/remove the ModifyWorld permission for dropping items inside of a defined region.
     
  8. Offline

    Deleted user

    I don't think this is possible...
     
  9. Offline

    NotYetRated

    haha my god I did not think of that... thanks!
     
  10. Offline

    rmsy

    No problem :)
     
Thread Status:
Not open for further replies.

Share This Page