Advertisement
Guest User

Untitled

a guest
May 2nd, 2011
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.31 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: ''
  65. suffix: ''
  66. build: true
  67. inheritance:
  68. permissions:
  69. - 'commandbook.spawn'
  70. - 'worldguard.reload'
  71. - 'commandbook.whereami'
  72. - 'commandbook.who'
  73. - 'commandbook.motd'
  74. - 'commandbook.rules'
  75. - 'commandbook.time'
  76. - 'commandbook.say'
  77. - 'commandbook.say.me'
  78. - 'commandbook.msg'
  79. '
  80. Moderator:
  81. default: false
  82. info:
  83. prefix: ''
  84. suffix: ''
  85. build: true
  86. inheritance:
  87. - Default
  88. permissions:
  89. - 'bar.foo'
  90. - 'worldguard.locate'
  91. - 'commandbook.rocket'
  92. - 'commandbook.barrage'
  93. - 'commandbook.bans.isbanned'
  94. - 'commandbook.kick'
  95. - 'commandbook.bans.ban'
  96. - 'commandbook.bans.unban'
  97. - 'commandbook.bans.save'
  98. - 'commandbook.bans.load'
  99. - 'commandbook.teleport'
  100. - 'commandbook.teleport.other'
  101. - 'worldguard.god'
  102. - 'worldguard.god.other'
  103. - 'worldguard.heal'
  104. - 'worldguard.heal.other'
  105. - 'worldguard.slay'
  106. - 'worldguard.slay.other'
  107. - 'commandbook.reload'
  108. - 'lwc.protect'
  109.  
  110. Admins:
  111. default: false
  112. info:
  113. prefix: ''
  114. suffix: ''
  115. build: true
  116. inheritance:
  117. permissions:
  118. - '*'
  119.  
  120. ##
  121. # Users denote which users are included in which group.
  122. # TheNo1Yeti is in the Admin group
  123. # Herpina is a member of the Moderator group but also has access
  124. # to the herp.derp permissions
  125. # Derpina is a member of the admin group but does not have access
  126. # to the derp.derp permission node
  127. # Users can also have a prefix and suffix as seen with Herpina
  128. ##
  129. users:
  130. Colonel_Black:
  131. group: Admins
  132. permissions:
  133. JackHarbor:
  134. group: Moderator
  135. permissions:
  136. Maeven:
  137. group: Moderator
  138. permissions:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement