Advertisement
some_kid

world_nightmare groups.yml

Dec 28th, 2011
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.81 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.     permissions:
  12.      - -worldguard.god
  13.       - -worldguard.god.other
  14.       - -essentials.god
  15.       - -essentials.god.others
  16.     inheritance:
  17.      - g:Guest
  18.      
  19.    Player:
  20.     permissions:
  21.      - -worldguard.god
  22.       - -worldguard.god.other
  23.       - -essentials.god
  24.       - -essentials.god.others
  25.     inheritance:
  26.      - g:Player
  27.      
  28.   Builder:
  29.     permissions:
  30.      - -worldguard.god
  31.       - -worldguard.god.other
  32.       - -essentials.god
  33.       - -essentials.god.others
  34.     inheritance:
  35.      - g:Builder
  36.      
  37.   Moderator:
  38.     permissions:
  39.      - -worldguard.god
  40.       - -worldguard.god.other
  41.       - -essentials.god
  42.       - -essentials.god.others
  43.     inheritance:
  44.      - g:Moderator
  45.      
  46.   Admin:
  47.     permissions:
  48.      - -worldguard.god
  49.       - -worldguard.god.other
  50.       - -essentials.god
  51.       - -essentials.god.others
  52.     inheritance:
  53.      - g:Admin
  54.      
  55.   CoOwner:
  56.     permissions:
  57.      - -worldguard.god
  58.       - -worldguard.god.other
  59.       - -essentials.god
  60.       - -essentials.god.others
  61.     inheritance:
  62.      - g:CoOwner
  63.      
  64.   Owner:
  65.     permissions:
  66.      - -worldguard.god
  67.       - -worldguard.god.other
  68.       - -essentials.god
  69.       - -essentials.god.others
  70.     inheritance:
  71.      - g:Owner
  72.      
  73.   # Nothing but the fancy tag, maybe encourage people :P
  74.   Donor:
  75.     permissions:
  76.      - -worldguard.god
  77.       - -worldguard.god.other
  78.       - -essentials.god
  79.       - -essentials.god.others
  80.     inheritance:
  81.       - g:Donor
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement