Guest User

Untitled

a guest
Jan 17th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.18 KB | None | 0 0
  1. # Group inheritance
  2. #
  3. # Any inherited groups prefixed with a g: are global groups
  4. # and are inherited from the GlobalGroups.yml.
  5. #
  6. # Groups without the g: prefix are groups local to this world
  7. # and are defined in the this groups.yml file.
  8. #
  9. # Local group inheritances define your promotion tree when using 'manpromote/mandemote'
  10.  
  11. groups:
  12.   Default:
  13.     default: true
  14.     permissions:
  15.     - essentials.spawn
  16.     inheritance: []
  17.     info:
  18.       prefix: '&e'
  19.      build: false
  20.      suffix: ''
  21.  Builder:
  22.    default: false
  23.    permissions:
  24.    - essentials.warp
  25.    inheritance:
  26.    - default
  27.    info:
  28.      prefix: '&2'
  29.      build: true
  30.      suffix: ''
  31.  Moderator:
  32.    default: false
  33.    permissions:
  34.    -essentials.ban
  35.    inheritance:
  36.    - builder
  37.    info:
  38.      prefix: '&5'
  39.      build: true
  40.      suffix: ''
  41.  Admin:
  42.    default: false
  43.    permissions:
  44.    -essentials.sethome
  45.    inheritance:
  46.    - moderator
  47.    info:
  48.      prefix: '&c'
  49.      build: true
  50.      suffix: ''
  51.  Owner:
  52.    default: false
  53.    permissions:
  54.    - '*'
  55.    - -vanish.*
  56.    inheritance:
  57.    - admin
  58.    info:
  59.      prefix: '&4'
  60.      build: true
  61.      suffix: ''
Add Comment
Please, Sign In to add comment