Advertisement
messageofdeath

PermissionsEx example

Feb 19th, 2012
2,109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.07 KB | None | 0 0
  1. groups:
  2.     Examplegroup:
  3.         default: true
  4.         prefix: '[ExampleGroup]'
  5.         options:
  6.             rank: 0
  7.         build: true
  8.         permissions:
  9.        - bukkit.command.gamemode
  10.       Examplegroup2:
  11.           default: false
  12.           prefix: '[Examplegroup2'
  13.           options:
  14.            #rank is for if they will have permission to go to the next level say co-owner wante to be owner he would not because of the rank system
  15.             rank: 1
  16.           #build true = can destroy, build etc false = can't destroy build etc...
  17.           build: true
  18.           worlds:
  19.               world1:
  20.                   permissions:
  21.                  # removing gamemode command from player access in the current world
  22.                   - -bukkit.command.gamemode
  23.                   #inheritance gets the group specified and get their permissions
  24.               world2:
  25.                   permissions:
  26.                  # giveing access to command in specified world
  27.                   - bukkit.command.gamemode
  28.           inheritance:
  29.              - Examplegroup
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement