Advertisement
someoneonly

noobshit

May 20th, 2011
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.83 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.  
  62. noob:
  63. default: true
  64. permissions:
  65. - war.player
  66. - war.warp
  67. inheritance: []
  68. info:
  69. prefix: '&d'
  70. build: true
  71. suffix: '&f'
  72. Builder:
  73. default: false
  74. permissions:
  75. - war.build
  76. inheritance:
  77. - warrior
  78. info:
  79. prefix: '&7'
  80. build: true
  81. suffix: '&f'
  82. moderator:
  83. default: false
  84. permissions:
  85. - war.*
  86. inheritance:
  87. - builder
  88. info:
  89. prefix: '&6'
  90. build: true
  91. suffix: '&f'
  92. advancedbuilder:
  93. default: false
  94. permissions:
  95. - war.*
  96. inheritance:
  97. - zonemaker
  98. info:
  99. prefix: '&3'
  100. build: true
  101. suffix: '&f'
  102. Admin:
  103. default: false
  104. permissions:
  105. - '*'
  106. inheritance: []
  107. info:
  108. prefix: '&7'
  109. build: true
  110. suffix: '&9'
  111.  
  112. ##
  113. # Users denote which users are included in which group.
  114. # TheNo1Yeti is in the Admin group
  115. # Herpina is a member of the Moderator group but also has access
  116. # to the herp.derp permissions
  117. # Derpina is a member of the admin group but does not have access
  118. # to the derp.derp permission node
  119. # Users can also have a prefix and suffix as seen with Herpina
  120. ##
  121. users:
  122. someoneonly:
  123. group: Admins
  124. info:
  125. prefix: '&7'
  126. suffix: '&7'
  127. permissions:'*.war.*.player.warp.*'
  128. deafult:
  129. group: Moderator
  130. info:
  131. prefix: 'Moo'
  132. suffix: 'Cow'
  133. permissions:
  134. - 'herp.derp'
  135. deafult2:
  136. group: Admins
  137. permissions:
  138. - '-derp.derp'
  139. ftwcreeper:
  140. group: moderator
  141. permissions:
  142. - '-derp.derp'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement