Guest User

Untitled

a guest
Jun 26th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 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. -
  16. inheritance:
  17. -
  18. info:
  19. prefix: '&8Default'
  20. build: true
  21. suffix: ''
  22. VIP:
  23. default: false
  24. permissions:
  25. -
  26. inheritance:
  27. - default
  28. info:
  29. prefix: '&a&lVIP'
  30. build: true
  31. suffix: ''
  32. Premium:
  33. default: false
  34. permissions:
  35. -
  36. inheritance:
  37. - VIP
  38. - default
  39. info:
  40. prefix: '&b&lPremium'
  41. build: true
  42. suffix: ''
  43. Elite:
  44. default: false
  45. permissions:
  46. -
  47. inheritance:
  48. - VIP
  49. - default
  50. - Premium
  51. info:
  52. prefix: '&b&lElite'
  53. build: true
  54. suffix: ''
  55. Legendary:
  56. default: false
  57. permissions:
  58. -
  59. inheritance:
  60. - VIP
  61. - default
  62. - Premium
  63. - Elite
  64. info:
  65. prefix: '&1&lLegendary'
  66. build: true
  67. suffix: ''
  68. God:
  69. default: false
  70. permissions:
  71. -
  72. inheritance:
  73. - VIP
  74. - default
  75. - Premium
  76. - Elite
  77. - Legendary
  78. info:
  79. prefix: '&6&lGod'
  80. build: true
  81. suffix: ''
  82. Moderator:
  83. default: false
  84. permissions:
  85. -
  86. inheritance:
  87. - VIP
  88. - default
  89. - Premium
  90. - Elite
  91. - Legendary
  92. - God
  93. info:
  94. prefix: '&5&lMod'
  95. build: true
  96. suffix: ''
  97. Owner:
  98. default: false
  99. permissions:
  100. - '*'
  101. inheritance:
  102. -
  103. info:
  104. prefix: '&c&lOwner'
  105. build: true
  106. suffix: ''
Add Comment
Please, Sign In to add comment