Advertisement
Guest User

permissions.yml

a guest
Aug 1st, 2012
342
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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. # If this file is for your default world (the one in server.properties) then you must
  5. # leave copies blank.
  6. # Example: copies: Derp - This will clone the permissions of the world Derp
  7. #
  8. # Make sure to rename this file to the name of the world that is in sever.properties under
  9. # level-name. So if it is level-name: world then this should be world.yml and in the
  10. # plugins/Permissions directory (ie. plugins/Permissions/world.yml)
  11. #
  12. # NOTE: Do not use tabs while editing this document. Use only spaces. A good way to avoid
  13. # doing this is to use Notepad++ and replace the tab with 4 spaces.
  14. plugin:
  15. permissions:
  16. system: default
  17. copies:
  18.  
  19. ##
  20. # AntiBuild is included with this. To disable a group from being able to build then
  21. # set the build: flag to false (build: false). If you want a group to be able to build
  22. # then set it to true.
  23. ##
  24. # Groups can contain inheritance.
  25. # To make a group inherit the permissions from another
  26. # group simply place the groups name in the "inheritance:" like so:
  27. #
  28. # Example:
  29. # inheritance:
  30. # - Default
  31. ##
  32. # All permissions including the asterisks must be placed in single quotes.
  33. # like so:
  34. #
  35. # - 'foo.bar'
  36. #
  37. # Otherwise errors will happen!
  38. ##
  39. # Globalized Permission settings:
  40. #
  41. # If a permission contains periods (.) you can denote a globalized parameter:
  42. #
  43. # - 'foo.*'
  44. #
  45. # This will allow you to use all general commands.
  46. #
  47. ##
  48. # Single Asterisk denotes all commands:
  49. #
  50. # - '*'
  51. # If you give a group this permissions, do not have the group inherit any permissions
  52. # from other groups. Any users assigned to this group should NOT be given any additional
  53. # permissions either.
  54. ##
  55. # To exempt a node use the - prefix like so:
  56. # - '-foo.bar'
  57. ##
  58. # prefix: and suffix: do not do anything on their own. You need another outside plugin
  59. # such as iChat or HeroChat in order for these to do anything.
  60. groups:
  61. player:
  62. default: true
  63. info:
  64. prefix: 'Player'
  65. suffix: ''
  66. build: true
  67. inheritance:
  68. permissions:
  69. - 'bukkit.command.tell'
  70. - 'bukkit.command.kill'
  71. - 'bukkit.command.me'
  72. - 'bukkit.command.teleport'
  73. - 'ChestShop.shop.*'
  74. - 'essentials.hat'
  75. - 'essentials.balance'
  76. - 'essentials.balance.others'
  77. - 'essentials.balancetop'
  78. - 'essentials.pay'
  79. - 'essentials.sell'
  80. - 'essentials.worth'
  81. - 'essentials.afk'
  82. - 'essentials.list'
  83. - 'essentials.mail'
  84. - 'essentials.mail.send
  85. - 'essentials.me'
  86. - 'essentials.motd'
  87. - 'essentials.msg'
  88. - 'essentials.suicide'
  89. - 'essentials.spawn'
  90. - 'essentials.home'
  91. - 'essentials.sethome'
  92. - 'essentials.tp'
  93. - 'essentials.tp.others'
  94. - 'essentials.tpa'
  95. - 'essentials.tpaccept'
  96. - 'essentials.tphere'
  97. - 'essentials.tpahere'
  98. - 'essentials.tppos'
  99. - 'essentials.warp'
  100. - 'iConomy.holdings'
  101. - 'iConomy.holdings.others'
  102. - 'iConomy.payment'
  103. - 'iConomy.top'
  104. - 'lwc.allcommands'
  105. - 'marraige.*'
  106. builder:
  107. default: false
  108. info:
  109. prefix: ''
  110. suffix: ''
  111. build: true
  112. inheritance:
  113. - player
  114. permissions:
  115. - 'bukkit.command.gamemode'
  116. moderator:
  117. default: false
  118. info:
  119. prefix: 'Mod'
  120. suffix: ''
  121. build: true
  122. inheritance:
  123. - builder
  124. - player
  125. permissions:
  126. - 'bukkit.command.kick'
  127. - 'bukkit.command.ban.player'
  128. - 'bukkit.command.ban.list'
  129. - 'bukkit.command.unban.player'
  130. - 'bukkit.command.ban.ip'
  131. - 'bukkit.command.op.give'
  132. - 'bukkit.command.op.take'
  133. - 'bukkit.command.give'
  134. - 'bukkit.command.time.add'
  135. - 'bukkit.command.time.set'
  136. - 'bukkit.command.xp'
  137. - 'bukkit.command.toggledownfall'
  138. - 'essentials.*'
  139.  
  140. admin:
  141. default: false
  142. info:
  143. prefix: 'Admin'
  144. suffix: ''
  145. build: true
  146. inheritance:
  147. permissions:
  148. - '*'
  149. owner:
  150. default: false
  151. info:
  152. prefix: 'Owner'
  153. suffix: ''
  154. build: true
  155. inheritance:
  156. permissions:
  157. - '*'
  158. ##
  159. # Users denote which users are included in which group.
  160. # TheNo1Yeti is in the Admin group
  161. # Herpina is a member of the Moderator group but also has access
  162. # to the herp.derp permissions
  163. # Derpina is a member of the admin group but does not have access
  164. # to the derp.derp permission node
  165. # Users can also have a prefix and suffix as seen with Herpina
  166. ##
  167. users:
  168. TheMustyMoose:
  169. group: owner
  170. permissions:
  171. ChickenPaul:
  172. group: admin
  173. permissions:
  174. yellowsnowman1:
  175. group: moderator
  176. permissions:
  177. LukasRss:
  178. group: builder
  179. permissions:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement