Help for premissionsEx

Discussion in 'Bukkit Help' started by XxThe_MC_TipersxX, Feb 19, 2014.

Thread Status:
Not open for further replies.
  1. So I started working on my prision server got everything working but premissionsEx
    I know its a problem with the premissions.yml
    Please check my pex premissions!
    http://pastebin.com/kUn3T2jh
     
  2. Offline

    TheGoldenGoal

    Here's your mistake:
    Code:
      X:
        default: false
      prefix: '&8[&7X&8]&f'
        permissions:
    Move the prefix line.
    By the way:
    Because you have each group having the permissions of the groups below it, just set up an inheritance ladder like so:
    Code:
      B:
        default: false
        prefix: '&8[&7B&8]&f'
        inheritance:
        - A
        permissions:
    Notice the inheritance lines. Do this for every group (You only need to define one group each time because the ladder continues:
    Code:
      C:
        default: false
        prefix: '&8[&7C&8]&f'
        inheritance:
        - B
        permissions:
    So you don't have to add each group every time; C inherits from B which inherits from A). This will save you a lot of time in the future. If you ever want to exclude a command from this, just add an extra dash in front of the node.
     
Thread Status:
Not open for further replies.

Share This Page