Advertisement
some_kid

groups.yml

Dec 23rd, 2011
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.15 KB | None | 0 0
  1. # Group inheritance
  2. # any inherited groups prefixed with a g: are global groups
  3. # These groups are defined in the globalgroups.yml
  4. # and can be inherited in any worlds groups/users.yml.
  5. #
  6. # Groups without the g: prefix are groups local to this world
  7. # and defined in the this groups.yml file.
  8.  
  9. groups:
  10.   Guest:
  11.     default: true
  12.     permissions:
  13.    - -bukkit.command.kill
  14.     inheritance:
  15.    - lwc.deny
  16.     - g:essentials_default
  17.     - g:bukkit_default
  18.     info:
  19.       prefix: '&6[Guest]&f'
  20.       build: false
  21.       suffix: ''
  22.   Player:
  23.     default: false
  24.     permissions: []
  25.     inheritance:
  26.    - guest
  27.     - lwc.protect
  28.     - g:essentials_builder
  29.     - g:loco_iconomy_basic
  30.     - g:loco_mv_basic
  31.     info:
  32.       prefix: '&2'
  33.       build: true
  34.       suffix: ''
  35.   Builder:
  36.     default: false
  37.     permissions: []
  38.     inheritance:
  39.    - player
  40.     info:
  41.       prefix: '&5[Trusted]&f'
  42.       build: true
  43.       suffix: ''
  44.   Moderator:
  45.     default: false
  46.     permissions: []
  47.     inheritance:
  48.    - builder
  49.     - lwc.mod
  50.     - g:essentials_moderator
  51.     - g:bukkit_moderator
  52.     - g:loco_iconomy_mod
  53.     - g:loco_mv_mod
  54.     info:
  55.       prefix: '&c[Mod]&f'
  56.       build: true
  57.       suffix: ''
  58.   Admin:
  59.     default: false
  60.     permissions: []
  61.     inheritance:
  62.    - moderator
  63.     - lwc.admin
  64.     - g:essentials_admin
  65.     - g:bukkit_admin
  66.     - g:loco_adminchat
  67.     - g:loco_iconomy_admin
  68.     - g:loco_mv_admin
  69.     info:
  70.       prefix: '&d[Admin]&f'
  71.       build: true
  72.       suffix: ''
  73.   CoOwner:
  74.     default: false
  75.     permissions:
  76.    - '*'
  77.     inheritance:
  78.    - admin
  79.     # to allow for editing world variables, pvp, mobs, etc
  80.     - multiverse.core.modify
  81.     info:
  82.       prefix: '&d[Admin]&f'
  83.       build: true
  84.       suffix: ''
  85.   Owner:
  86.     default: false
  87.     permissions:
  88.    - '*'
  89.     inheritance:
  90.    - coowner
  91.     - g:loco_mv_sadmin
  92.     info:
  93.       prefix: '&d[Admin]&f'
  94.       build: true
  95.       suffix: ''
  96.   # Nothing but the fancy tag, maybe encourage people :P
  97.   Donor:
  98.     default: false
  99.     permissions: []
  100.     inheritance: []
  101.     info:
  102.       prefix: '&b[Donor]&f'
  103.       build: true
  104.       suffix: ''
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement