Solved World managment

Discussion in 'Bukkit Help' started by Garfiz, Dec 23, 2012.

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

    Garfiz

    Hi, can anybody suggest plugin, which could disable Obsidian placement and Splash potion of harming II usage? im using PermissionsEX, and Modifyworld don't work properly (or i'm doing something wrong) EssentialsAntibuild was working great, but i can't get it work with PEX :/
     
  2. Offline

    Jackbrook

    ModifyWorld should work. Give the group Modifyworld.* then you need to give the same group the following negative permissions.

    If you didn't want a group to place obsidian, add this permission to the group.

    - -modifyworld.blocks.place.49

    And for the potion,

    - -modifyworld.items.throw.373:16428
     
  3. Offline

    Garfiz

    i already did this, but it won't work, group Guest still can place obsidian..
    Code:
    groups:
      Guest:
        default: true
        prefix: '&8[&7Player&8]&f'
        permissions:
        - modifyworld.*
        - -modifyworld.blocks.destroy.obsidian
        - -modifyworld.blocks.interact.obsidian
        - -modifyworld.blocks.place.obsidian
        - factions.kit.fullplayer
        - essentials.help
        - essentials.ignore
        - mbr.user.collect.normal
        - essentials.delhome
        - essentials.home
        - essentials.kits.tools
        - essentials.mail
        - essentials.mail.send
        - essentials.msg
        - essentials.pay
        - essentials.sethome
        - essentials.tpa
        - essentials.tpaccept
        - essentials.tpdeny
        - essentials.mail.send
    
     
  4. Offline

    Jackbrook

    Not sure if this is true, or will work, but I just read that you need to put the negative permissions before
    - modifyworld.*

    This might not work, but it's worth a try. :)
     
  5. Offline

    Garfiz

    U mean like that?
    Code:
     permissions:
        - -modifyworld.*
        - -modifyworld.blocks.destroy.obsidian
        - -modifyworld.blocks.interact.obsidian
        - -modifyworld.blocks.place.obsidian
     
  6. Offline

    Jackbrook

    Other way around. The three negative perms first. I don't know if this will change anything, just something I read.
     
  7. Offline

    Garfiz

    A big thanks from me. :)
    Code:
    groups:
      Guest:
        default: true
        prefix: '&8[&7Player&8]&f'
        permissions:
        - -modifyworld.blocks.destroy.obsidian
        - -modifyworld.blocks.interact.obsidian
        - -modifyworld.blocks.place.obsidian
        - modifyworld.*
    Works perfectly :)
     
Thread Status:
Not open for further replies.

Share This Page