[Help] How to disable item

Discussion in 'Bukkit Help' started by Kaosvf, May 29, 2011.

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

    Kaosvf

    Hi,
    how can I disable an Item?
    Thank you in advance.
     
  2. Offline

    AgentKid

    You're going to have to give us a little more information than that:
    What build of bukkit are you running?
    Do you mean an ITEM or a block?
    What item are you trying to block? (some items are harder to block)
    Do you want it to be disabled in just one world or all worlds?
     
  3. Offline

    Kaosvf

    Build: 803
    Item, the number 327.
    I have just one world.
     
  4. Offline

    AgentKid

    Install WorldGuard
    Open ../plugins/WorldGuard/worlds/<worldname>/blacklist.txt
    At the very bottom, place this:
    Code:
    [10,11]
    on-place=deny,log,notify,tell
    message=You are not allowed to place lava!
    Also, if you want, you can add ",kick" to the end of the on-place line and it will kick them with that message.
     
  5. Offline

    Kaosvf

    Solved with EssentialProtect, thx.
     
  6. Offline

    MrPendulum

    Another vote for Worldguard. Here are the relevant contents of my blacklist.txt:

    Code:
    # Deny lava buckets
    [lavabucket]
    on-use=deny,tell,notify,log
    
    # Deny Lava blocks
    [10,11]
    on-place=deny,tell,notify,log
    
    # Deny TNT
    [tnt]
    on-place=deny,tell,notify,log
     
Thread Status:
Not open for further replies.

Share This Page