Advertisement
Guest User

Untitled

a guest
Apr 26th, 2011
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.72 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. ---
  61. plugin:
  62. permissions:
  63. system: 'default'
  64. copies: ''
  65. groups:
  66. Admin:
  67. default: ''
  68. info:
  69. prefix: '&normal'
  70. suffix: '§multiplay'
  71. build: true
  72. inheritance: ''
  73. permissions:
  74. - '*'
  75. Builder:
  76. default: ''
  77. info:
  78. prefix: ''
  79. suffix: ''
  80. build: false
  81. inheritance:
  82. - 'Default'
  83. permissions: ''
  84. Guest:
  85. default: ''
  86. info:
  87. prefix: ''
  88. suffix: ''
  89. build: true
  90. inheritance: ''
  91. permissions:
  92. - 'essentials.help'
  93. - 'essentials.motd'
  94. - 'essentials.rules'
  95. Moderator:
  96. default: false
  97. info:
  98. prefix: ''
  99. suffix: ''
  100. build: true
  101. inheritance:
  102. - 'Builder'
  103. permissions:
  104. - 'essentials.tp'
  105. - 'essentials.tphere'
  106. - 'essentials.kick'
  107. - 'essentials.god'
  108. Spec:
  109. default: ''
  110. info:
  111. prefix: ''
  112. suffix: ''
  113. build: false
  114. inheritance: ''
  115. permissions: ''
  116. VIP:
  117. default: ''
  118. info:
  119. prefix: ''
  120. suffix: ''
  121. build: true
  122. inheritance:
  123. - 'Moderator'
  124. permissions:
  125. - 'essentials.warp'
  126. - 'esssentials.ban'
  127. - 'essentials.setwarp'
  128. users:
  129. MJ10:
  130. group: 'Moderator'
  131. permissions: ''
  132. Mr_The_Ninja:
  133. group: 'VIP'
  134. permissions:
  135. - 'new_permission'
  136. TheLatias10:
  137. group: 'Moderator'
  138. permissions:
  139. - 'new_permission'
  140. blakley:
  141. group: 'Admin'
  142. permissions: ''
  143. nailone:
  144. group: 'Moderator'
  145. permissions: ''
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement