Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.69 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. # 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. Default:
  62. default: true
  63. info:
  64. prefix: '&5'
  65. suffix: ''
  66. build: false
  67. inheritance:
  68. permissions:
  69. - 'commandbook.who'
  70. - 'commandbook.motd'
  71. - 'commandbook.rules'
  72. - 'commandbook.spawn'
  73. Builder:
  74. default: false
  75. info:
  76. prefix: '&1'
  77. suffix: ''
  78. build: true
  79. inheritance:
  80. - Default
  81. permissions:
  82. - 'myhome.home.basic.*'
  83. - 'myhome.home.soc.*'
  84. - 'mywarp.warp.basic.warp'
  85. - 'mywarp.warp.basic.list'
  86. - 'mywarp.warp.soc.*'
  87. - 'mywarp.warp.sign.warp'
  88. - 'iConomy.access'
  89. - 'iConomy.rank '
  90. - 'iConomy.payment'
  91. - 'iConomyChestShop.shop.buy'
  92. - 'iConomyChestShop.shop.sell'
  93. - 'iConomyChestShop.command.iteminfo'
  94. - 'lwc.protect'
  95. - ''
  96. - ''
  97. Moderator:
  98. default: false
  99. info:
  100. prefix: '&2'
  101. suffix: ''
  102. build: true
  103. inheritance:
  104. - Builder
  105. permissions:
  106. - 'myhome.admin'
  107. - 'mywarp.admin'
  108. - 'lwc.mod'
  109. - 'rocketboots.boots.gold'
  110. - ''
  111. Admins:
  112. default: false
  113. info:
  114. prefix: '&4'
  115. suffix: ''
  116. build: true
  117. inheritance:
  118. - Moderator
  119. permissions:
  120. - '*'
  121. ##
  122. # Users denote which users are included in which group.
  123. # TheNo1Yeti is in the Admin group
  124. # Herpina is a member of the Moderator group but also has access
  125. # to the herp.derp permissions
  126. # Derpina is a member of the admin group but does not have access
  127. # to the derp.derp permission node
  128. # Users can also have a prefix and suffix as seen with Herpina
  129. ##
  130. users:
  131. Knoffel:
  132. group: Admins
  133. permissions:
  134. normalguy:
  135. group: Admins
  136. permissions:
  137. Foxdsign:
  138. group: Moderator
  139. permissions:
  140. Foxdsignwife:
  141. group: Builder
  142. permissions:
  143. LordKailas:
  144. group: Moderator
  145. permissions:
  146. directhit73:
  147. group: Builder
  148. permissions:
  149. fabians1991:
  150. group: Builder
  151. permissions:
  152. Kunitokotachi:
  153. group: Builder
  154. permissions:
  155. waynetraub3:
  156. group: Builder
  157. permissions:
  158. bugmaster8:
  159. group: Builder
  160. permissions:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement