Advertisement
Guest User

Untitled

a guest
May 27th, 2011
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.19 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: '[Guest]'
  65. suffix: ''
  66. build: true
  67. inheritance:
  68. permissions:
  69. - 'foo.bar'
  70. - 'iConomy.access'
  71. - 'iConomy.payment'
  72. - 'iConomy.rank
  73. Moderator:
  74. default: false
  75. info:
  76. prefix: ''
  77. suffix: ''
  78. build: true
  79. inheritance:
  80. - Default
  81. permissions:
  82. - 'bar.foo'
  83. - 'firecontrol.check'
  84. - 'firecontrol.command'
  85. - 'iConomy.admin.account.create'
  86. - 'iConomy.admin.account.remove'
  87. - 'iConomy.admin.bank.create'
  88. - 'iConomy.admin.bank.remove'
  89. - 'iConomy.admin.bank.set'
  90. - 'iConomy.admin.empty'
  91. - 'iConomy.admin.grant'
  92. - 'iConomy.admin.hide'
  93. - 'iConomy.admin.purge'
  94. - 'iConomy.admin.reset'
  95. - 'iConomy.admin.set'
  96. - 'iConomy.admin.stats'
  97. - 'iConomy.bank.access'
  98. - 'iConomy.bank.deposit'
  99. - 'iConomy.bank.join'
  100. - 'iConomy.bank.join.multiple'
  101. - 'iConomy.bank.leave'
  102. - 'iConomy.bank.list'
  103. - 'iConomy.bank.main'
  104. - 'iConomy.bank.main.change'
  105. - 'iConomy.bank.main.set'
  106. - 'iConomy.bank.main.view'
  107. - 'iConomy.bank.transfer'
  108. - 'iConomy.bank.transfer.multiple'
  109. - 'iConomy.bank.withdraw'
  110. - 'iConomy.list'
  111. - 'iConomy.payment'
  112. - 'iConomy.rank'
  113. CoOwner:
  114. default: false
  115. info:
  116. prefix: ''
  117. suffix: ''
  118. build: true
  119. inheritance:
  120. permissions:
  121. - '*'
  122. - 'fltd.disable'
  123. - 'izone.zones.create'
  124. - 'izone.zones.delete'
  125. - 'izone.zones.info'
  126. - 'izone.zones.flag'
  127. - 'izone.zones.allow'
  128. - 'izone.zones.disallow'
  129. - 'izone.zones.expand'
  130. - 'izone.edit.undo'
  131. - 'izone.edit.fill'
  132. - 'izone.edit.count'
  133. - 'izone.edit.replace'
  134. - 'izone.edit.delete'
  135. - 'izone.zones.check'
  136. - 'izone.zones.define'
  137. - 'izone.zones.ignoreowner'
  138. Host:
  139. default: false
  140. info:
  141. prefix: ''
  142. suffix: ''
  143. build: true
  144. inheritance:
  145. permissions:
  146. - '*'
  147. - 'allow-admin-bypass'
  148. - 'allow-admin-snoop'
  149. ##
  150. # Users denote which users are included in which group.
  151. # TheNo1Yeti is in the Admin group
  152. # Herpina is a member of the Moderator group but also has access
  153. # to the herp.derp permissions
  154. # Derpina is a member of the admin group but does not have access
  155. # to the derp.derp permission node
  156. # Users can also have a prefix and suffix as seen with Herpina
  157. ##
  158. users:
  159. Noahk11:
  160. group: Host
  161. permissions:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement