Advertisement
Guest User

Untitled

a guest
Mar 7th, 2011
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.16 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. #
  7. # Make sure to rename this file to the name of the world that is in sever.properties under
  8. # level-name. So if it is level-name: world then this should be world.yml and in the
  9. # plugins/Permissions directory (ie. plugins/Permissions/world.yml)
  10. #
  11. # NOTE: Do not use tabs while editing this document. Use only spaces. A good way to avoid
  12. # doing this is to use Notepad++ and replace the tab with 4 spaces.
  13. plugin:
  14. permissions:
  15. system: default
  16. copies:
  17. ##
  18. # AntiBuild is included with this. To disable a group from being able to build then
  19. # set the build: flag to false (build: false). If you want a group to be able to build
  20. # then set it to true.
  21. ##
  22. # Groups can contain inheritance.
  23. # To make a group inherit the permissions from another
  24. # group simply place the groups name in the "inheritance:" like so:
  25. #
  26. # Example:
  27. # inheritance:
  28. # - Default
  29. ##
  30. # All permissions including the asterisks must be placed in single quotes.
  31. # like so:
  32. #
  33. # - 'general.spawn'
  34. #
  35. # Otherwise errors will happen!
  36. ##
  37. # Globalized Permission settings:
  38. #
  39. # If a permission contains periods (.) you can denote a globalized parameter:
  40. #
  41. # - 'general.*'
  42. #
  43. # This will allow you to use all general commands.
  44. #
  45. ##
  46. # Single Asterisk denotes all commands:
  47. #
  48. # - '*'
  49. # If you give a group this permissions, do not have the group inherit any permissions
  50. # from other groups. Any users assigned to this group should NOT be given any additional
  51. # permissions either.
  52. ##
  53. # To exempt a node use the - prefix like so:
  54. # - '-general.time'
  55. ##
  56. # prefix: and suffix: do not do anything on their own. You need another outside plugin
  57. # such as iChat or HeroChat in order for these to do anything.
  58. groups:
  59. Guest:
  60. default: true
  61. info:
  62. prefix: ''
  63. suffix: ''
  64. build: false
  65. inheritance:
  66. permissions:
  67. - 'essentials.spawn'
  68. - 'essentials.list'
  69. - 'essentials.help'
  70. - 'essentials.motd'
  71. - 'essentials.rules'
  72. User:
  73. default: false
  74. info:
  75. prefix: ''
  76. suffix: ''
  77. build: true
  78. inheritance:
  79. - Guest
  80. permissions:
  81. - 'essentials.clearinventory'
  82. - 'essentials.getpos'
  83. - 'essentials.whois'
  84. - 'essentials.mail'
  85. - 'essentials.mail.send'
  86. - 'essentials.ping'
  87. - 'essentials.realname'
  88. - 'essentials.home'
  89. - 'essentials.sethome'
  90. Mod:
  91. default: false
  92. info:
  93. prefix: ''
  94. suffix: ''
  95. build: true
  96. inheritance:
  97. - User
  98. permissions:
  99. - 'essentials.compass'
  100. - 'essentials.depth'
  101. - 'essentials.kit.tools'
  102. - 'essentials.nick'
  103. - 'essentials.heal'
  104. - 'essentials.top'
  105. - 'essentials.jump'
  106. - 'essentials.kick'
  107. - 'essentials.ban'
  108. - 'essentials.unban'
  109. - 'essentials.unbanip'
  110. - 'essentials.banip'
  111. - 'searchids.search.*'
  112. - 'essentials.give'
  113. - 'magiccarpet.mc'
  114. - 'essentials.kill'
  115. - 'essentials.back'
  116. - 'essentials.reloadall'
  117. - 'essentials.rel'
  118. - 'essentials.plugin'
  119. - 'essentials.spawnmob'
  120. - 'essentials.broadcast'
  121. - 'essentials.antioch'
  122. - 'essentials.time'
  123. - 'essentials.tree'
  124. - 'essentials.bigtree'
  125. - 'essentials.eco'
  126. - 'essentials.economy'
  127. - 'essentials.tptoggle'
  128. - 'essentials.kick'
  129. - 'essentials.kickall'
  130. - 'essentials.setspawn'
  131. - 'essentials.setwarp'
  132. - 'essentials.delwarp'
  133. - '-essentials.mod'
  134. - '-essentials.modgrp'
  135. Admin:
  136. default: false
  137. info:
  138. prefix: ''
  139. suffix: ''
  140. build: true
  141. inheritance:
  142. permissions:
  143. - '*'
  144. ##
  145. # Users denote which users are included in which group.
  146. # TheNo1Yeti is in the Admin group
  147. # Herpina is a member of the Moderator group but also has access
  148. # to the herp.derp permissions
  149. # Derpina is a member of the admin group but does not have access
  150. # to the derp.derp permission node
  151. # Users can also have a prefix and suffix as seen with Herpina
  152. ##
  153. Users:
  154. Shurris:
  155. group: Admin
  156. permissions:
  157. XyberDeath:
  158. group: User
  159. permissions:
  160. Kajoma:
  161. group: User
  162. permissions:
  163. Hiscarious:
  164. group: User
  165. permissions:
  166. Lixxx:
  167. group: User
  168. permissions:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement