PEX help needed! :(

Discussion in 'Bukkit Help' started by vincam, Apr 17, 2012.

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

    vincam

    I'm setting up a pretty complex server from scratch, and i have never done this before, im learning as I go along, so please go easy on me.


    Basically im stuck on the -modifyworld.blocks.destroy permission node. what i want is to make default group be able to break all blocks EXCEPT 2(grass) and 12(sand), to prevent surface world griefing. i tried doing
    - -modifyworld.blocks.destroy.2
    - -modifyworld.blocks.destroy.12
    but the - doesen't seem to be working... now if i remove all block destroy nodes, default cant break anything, and can only break if i put a modifyworld.blocks.destroy.(whatever item).

    So my question is, can i somehow block just these 2 blocks (or better yet, if anyone has a plugin that only protects the surface world from grief) without having to add permissions for default to break EVERYBLOCK one by one and just leave out 2 and 12?
     
  2. Offline

    ZeroZX4

    in modifyworld cinfig file set

    use-material-names: true

    and than in permissions use

    - -modifyworld.blocks.destroy.grass
    - -modifyworld.blocks.destroy.sand

    and if you use .* like - modifyworld.block.destroy.* to give users permission to destroy other blocks than negative permissions need to be listed 1st and .* permission need to be listed below them cause pex read from top to bottom

    so it would look like0

    - -modifyworld.blocks.destroy.grass
    - -modifyworld.blocks.destroy.sand
    - modifyworld.blocks.destroy.*
     
  3. Offline

    vincam

Thread Status:
Not open for further replies.

Share This Page