PermissionsEx help

Discussion in 'Bukkit Help' started by MercAngel, Dec 26, 2011.

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

    MercAngel

    i have two admin groups Super and Normal. Supper will have access to every thing and i know i can do that with this

    Code:
    permissions:
            - '*'
    Normal will have access to most every thing but not all ex. (/reload /op /stop) and some others. is there an easy way to do this or do i have to give them access to every command one at a time
     
  2. Offline

    blasterweb

    PermissionsEX checks from up to down, so you could just do this for the Normal group:

    Code:
    permissions:
    - -bukkit.command.stop
    - -bukkit.command.op.give
    - -bukkit.command.op.take
    - -bukkit.command.reload
    - -otherpermissions.youDontWantThemToHave
    - '*'
     
  3. Offline

    MercAngel

    Cool ty
     
Thread Status:
Not open for further replies.

Share This Page