Advertisement
Guest User

Untitled

a guest
Oct 9th, 2015
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 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. Player:
  13. default: true
  14. permissions:
  15. - hub.spawn
  16. - hub.compass
  17. inheritance: []
  18. info:
  19. prefix: '&7'
  20. build: true
  21. suffix: ''
  22. Supporter:
  23. default: false
  24. permissions:
  25. -
  26. inheritance:
  27. - Player
  28. info:
  29. prefix: '&2Supporter &7'
  30. build: true
  31. suffix: ''
  32. VIP:
  33. default: false
  34. permissions:
  35. -
  36. inheritance:
  37. - Supporter
  38. info:
  39. prefix: '&bVIP &7'
  40. build: true
  41. suffix: ''
  42. Hero:
  43. default: false
  44. permissions:
  45. -
  46. inheritance:
  47. - VIP
  48. info:
  49. prefix: '&eHero &7'
  50. build: true
  51. suffix: ''
  52. Legend:
  53. default: false
  54. permissions:
  55. -
  56. inheritance:
  57. - Hero
  58. info:
  59. prefix: '&6Legend &7'
  60. build: true
  61. suffix: ''
  62. Uber:
  63. default: false
  64. permissions:
  65. -
  66. inheritance:
  67. - Legend
  68. info:
  69. prefix: '&d&lUber &7'
  70. build: true
  71. suffix: ''
  72. Royal:
  73. default: false
  74. permissions:
  75. -
  76. inheritance:
  77. - Uber
  78. info:
  79. prefix: '&5&lRoyal &7'
  80. build: true
  81. suffix: ''
  82. Guardian:
  83. default: false
  84. permissions:
  85. -
  86. inheritance:
  87. - Royal
  88. info:
  89. prefix: '&6&lGuardian &7'
  90. build: true
  91. suffix: ''
  92. Elite:
  93. default: false
  94. permissions:
  95. -
  96. inheritance:
  97. - Guardian
  98. info:
  99. prefix: '&5&lElite &7'
  100. build: true
  101. suffix: ''
  102. Mod:
  103. default: false
  104. permissions:
  105. -
  106. inheritance:
  107. - Player
  108. info:
  109. prefix: '&b&lMod &7'
  110. build: true
  111. suffix: ''
  112. Admin:
  113. default: false
  114. permissions:
  115. -
  116. inheritance:
  117. - Mod
  118. info:
  119. prefix: '&1&lAdmin &7'
  120. build: true
  121. suffix: ''
  122. Owner:
  123. default: false
  124. permissions:
  125. -
  126. inheritance:
  127. - Admin
  128. info:
  129. prefix: '&c&lOwner &7'
  130. build: true
  131. suffix: ''
  132. CEO:
  133. default: false
  134. permissions:
  135. -
  136. inheritance:
  137. - Owner
  138. info:
  139. prefix: '&9&lCEO &7'
  140. build: true
  141. suffix: ''
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement