Advertisement
some_kid

groups.yml

Dec 27th, 2011
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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.     inheritance:
  12.      - g:Guest
  13.      
  14.    Player:
  15.     inheritance:
  16.      - g:Player
  17.      
  18.   Builder:
  19.     inheritance:
  20.      - g:Builder
  21.      
  22.   Moderator:
  23.     inheritance:
  24.      - g:Moderator
  25.      
  26.   Admin:
  27.     inheritance:
  28.      - g:Admin
  29.      
  30.   CoOwner:
  31.     inheritance:
  32.      - g:CoOwner
  33.      
  34.   Owner:
  35.     inheritance:
  36.      - g:Owner
  37.      
  38.   # Nothing but the fancy tag, maybe encourage people :P
  39.   Donor:
  40.     inheritance:
  41.       - g:Donor
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement