Advertisement
Guest User

Untitled

a guest
Mar 1st, 2011
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.47 KB | None | 0 0
  1. # System is no longer used, but may become used in the future
  2. # Copies is for multiple-world support
  3. # Put the name of the world you wish for it to be a clone of, otherwise leave it empty.
  4. # Does not work for the default world.
  5. # Example: copies: Derp - This will clone the permissions of the world Derp
  6. plugin:
  7. permissions:
  8. system: default
  9. copies: 1.3 test
  10.  
  11. # Groups can contain inheritance.
  12. # To make a group inherit the permissions from another
  13. # group simply place the groups name in the "inheritance:" like so:
  14. #
  15. # Example:
  16. # inheritance:
  17. # - Default
  18. ##
  19. # All permissions including the asterisks must be placed in single quotes.
  20. # like so:
  21. #
  22. # - 'general.spawn'
  23. #
  24. # Otherwise errors will happen!
  25. ##
  26. # Globalized Permission settings:
  27. #
  28. # If a permission contains periods (.) you can denote a globalized parameter:
  29. #
  30. # - 'general.*'
  31. #
  32. # This will allow you to use all general commands.
  33. #
  34. ##
  35. # Single Asterisk denotes all commands:
  36. #
  37. # - '*'
  38. ##
  39. # To exempt a node use the - prefix like so:
  40. # - '-general.time'
  41. ##
  42. groups:
  43. Guest:
  44. default: true
  45. info:
  46. prefix: '[Guest]'
  47. suffix: ''
  48. build: false
  49. inheritance:
  50. permissions:
  51. - 'essentials.spawn'
  52. - 'essentials.help'
  53. - 'essentials.sethome'
  54. - 'essentials.home'
  55. - 'essentials.rules'
  56. - 'essentials.kit.*'
  57. - 'jail.usercmd.jailstatus'
  58. - 'essentials.warp'
  59. - 'essentials.list'
  60. - 'essentials.god'
  61. Nub:
  62. default: false
  63. info:
  64. prefix: '[N00b]'
  65. suffix: ''
  66. build: true
  67. inheritance:
  68. permissions:
  69.  
  70. Citizen:
  71. default: false
  72. info:
  73. prefix: '[Citizen]'
  74. suffix: ''
  75. build: true
  76. inheritance:
  77. - Guest
  78. permissions:
  79. - 'essentials.mail.*'
  80. - 'essentials.item'
  81. - 'essentials.msg'
  82. - 'guardian.god'
  83. Moderator:
  84. default: false
  85. info:
  86. prefix: '[Mod]'
  87. suffix: ''
  88. build: true
  89. inheritance:
  90. - Citizen
  91. permissions:
  92. - 'jail.command.jail'
  93. - 'jail.command.unjail'
  94. - 'essentials.getpos'
  95. - 'essentials.setspawn'
  96. - 'essentials.whois'
  97. - 'essentials.motd'
  98. - 'essentials.online'
  99. - 'essentials.ping'
  100. - 'essentials.tp'
  101. - 'essentials.tpa'
  102. - 'essentials.tphere'
  103. - 'essentials.tpohere'
  104. - 'essentials.kick'
  105. - 'essentials.eco'
  106. - 'essentials.sell'
  107. - 'essentials.stopfire'
  108. - 'essentials.unstuck'
  109. - 'essentials.jumpto'
  110. - 'essentials.afk'
  111. - 'essentials.give'
  112. - 'pdoors.mod'
  113. Admin:
  114. default: false
  115. info:
  116. prefix: '[Admin]'
  117. suffix: ''
  118. build: true
  119. inheritance:
  120. - Moderator
  121. permissions:
  122. - 'essentials.ban'
  123. - 'essentials.broadcast'
  124. - 'jail.modifyjail'
  125. - 'essentials.time'
  126. - 'essentials.banip'
  127. - 'essentials.unbanip'
  128. - 'essentials.clearinventory'
  129. - 'pdoor.admin'
  130. - 'jail.command.jailtransferall'
  131. - 'jail.command.jailtransfer'
  132. - 'essentials.heal'
  133. - 'essentials.unban'
  134. - 'essentials.setwarp'
  135. - 'essentials.delwarp'
  136. - 'jail.command.jailcheck'
  137. - 'essentials.spawnmob'
  138. - 'essentials.kill'
  139. - 'worldedit.*'
  140. Owner:
  141. default: false
  142. info:
  143. prefix: '[Teh Owner]'
  144. suffix: ''
  145. build: true
  146. inheritance:
  147. permissions:
  148. - '*'
  149.  
  150. ##
  151. # Users denote which users are included in which group.
  152. # TheNo1Yeti is in the Admin group
  153. # Herpina is a member of the Default group but also has access
  154. # to the herp.derp permissions
  155. # Derpina is a member of the admin group but does not have access
  156. # to the derp.derp permission node
  157. ##
  158. users:
  159. Jdog653:
  160. group: Owner
  161. permissions:
  162. - 'essentials.reloadall'
  163. Anal_tornado:
  164. group: Moderator
  165. permissions:
  166. - 'herp.derp'
  167. Chigs:
  168. group: Admin
  169. permissions:
  170. - '-derp.derp'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement