Advertisement
Guest User

Untitled

a guest
Jun 10th, 2011
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.96 KB | None | 0 0
  1.  
  2. ##
  3. # AntiBuild is included with this. To disable a group from being able to build then
  4. # set the build: flag to false (build: false). If you want a group to be able to build
  5. # then set it to true.
  6. ##
  7. # Groups can contain inheritance.
  8. # To make a group inherit the permissions from another
  9. # group simply place the groups name in the "inheritance:" like so:
  10. #
  11. # Example:
  12. # inheritance:
  13. # - Default
  14. ##
  15. # Globalized Permission settings:
  16. #
  17. # If a permission contains periods (.) you can denote a globalized parameter:
  18. #
  19. # - 'foo.*'
  20. #
  21. # This will allow you to use all general commands.
  22. #
  23. ##
  24. # Single Asterisk denotes all commands:
  25. #
  26. # - '*'
  27. ##
  28. # To exempt a node use the - prefix like so:
  29. # - '-foo.bar'
  30. ##
  31. # prefix: and suffix: do not do anything on their own. You need another outside plugin
  32. # such as iChat or HeroChat in order for these to do anything.
  33.  
  34. groups:
  35. Guest:
  36. default: true
  37. info:
  38. prefix: '[Guest]'
  39. suffix: ''
  40. build: false
  41. inheritance:
  42. permissions:
  43. - 'foo.bar'
  44. Citizen:
  45. default: false
  46. info:
  47. prefix: '[Citizen]'
  48. suffix: '&a'
  49. build: true
  50. inheritance:
  51. permissions:
  52. - 'foo.bar'
  53. Soldier:
  54. default: false
  55. info:
  56. prefix: '[Soldier]'
  57. suffix: '&b'
  58. build: true
  59. inheritance:
  60. permissions:
  61. - 'foo.bar'
  62. Priest:
  63. default: false
  64. info:
  65. prefix: '[Priest]'
  66. suffix: '&c'
  67. build: true
  68. inheritance:
  69. permissions:
  70. - 'foo.bar'
  71. Banker:
  72. default: false
  73. info:
  74. prefix: '[Banker]'
  75. suffix: '&d'
  76. build: true
  77. inheritance:
  78. permissions:
  79. - 'foo.bar'
  80. Builder:
  81. default: false
  82. info:
  83. prefix: '[Builder]'
  84. suffix: '&e'
  85. build: true
  86. inheritance:
  87. permissions:
  88. - 'foo.bar'
  89. Moderator:
  90. default: false
  91. info:
  92. prefix: '[MoD]'
  93. suffix: '&1'
  94. build: true
  95. inheritance:
  96. permissions:
  97. - 'bar.foo'
  98. Admins:
  99. default: false
  100. info:
  101. prefix: '[Admin]'
  102. suffix: '&2'
  103. build: true
  104. inheritance:
  105. - default
  106. permissions:
  107. - '*'
  108.  
  109. Owner:
  110. default: false
  111. info:
  112. prefix: '[Owner]'
  113. suffix: '&3'
  114. build: true
  115. inheritance:
  116. permissions:
  117. - '*'
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124. globalUsers now:
  125.  
  126.  
  127.  
  128. users:
  129. Brianbloke:
  130. groups:
  131. - Owner
  132. permissions:
  133. - '*'
  134. iSIKSHOT:
  135. groups:
  136. - Admins
  137. permissions:
  138. - '*'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement