Advertisement
Guest User

Untitled

a guest
Oct 27th, 2011
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.84 KB | None | 0 0
  1.  
  2. # Permissions has AntiBuild, which prevents a player from destroying/placing blocks.
  3. # To prevent a group of players then set the build: flag to false (build: false).
  4. # If you want a group to be able to build then set it to true.
  5. ##
  6. # Groups can inherit from other groups.
  7. # To make a group inherit the permissions and info nodes from another
  8. # group, simply place the groups name in the "inheritance:" like so:
  9. #
  10. # Example:
  11. # inheritance:
  12. # - Default
  13. ##
  14. # Wildcard Permission settings:
  15. #
  16. # You can have wildcard nodes which encompass all nodes that match it.
  17. # For example, the node "modplugin.*" matches "modplugin.kick", "modplugin.ban",
  18. # "modplugin.settings.view", and so on.
  19. #
  20. ##
  21. # A single asterisk means that this user/group has all permissions.
  22. # - '*'
  23. ##
  24. # Negated nodes are created by prefixing a normal node with "-".
  25. # They prevent less specific wildcard nodes from matching the negated node.
  26. # For example:
  27. #
  28. # permissions:
  29. # - 'foo.*'
  30. # - '-foo.bar'
  31. #
  32. # In this case, the user/group will have "foo.foo", "foo.foobar", and so on, but not "foo.bar".
  33. #
  34. ##
  35. # prefix: and suffix: do not do anything on their own. You need another outside plugin
  36. # such as iChat or HeroChat in order for these to do anything.
  37. ##
  38. #
  39. # For more info, visit https://github.com/TheYeti/Permissions/wiki/Guide-to-creating-YAML-configs
  40. #
  41. ##
  42.  
  43. groups:
  44. Guest:
  45. default: false
  46. info:
  47. prefix: '&0'
  48. suffix: '&0'
  49. build: true
  50. inheritance:
  51. Terranovian:
  52. default: true
  53. info:
  54. prefix: '&2'
  55. suffix: '&2'
  56. build: true
  57. inheritance:
  58. - Default
  59. permissions:
  60. - 'warpplugin.warp'
  61. - 'econplugin.basic.*'
  62. - 'ChestShop.shop.create'
  63. - 'ChestShop.shop.sell'
  64. - 'ChestShop.shop.buy'
  65. - 'towny.town.resident'
  66. - 'towny.town.rename'
  67. - 'towny.town.plot'
  68. - 'towny.town.new'
  69. - 'towny.town.delete'
  70. - 'towny.town.claim'
  71. - 'towny.town.spawn.town'
  72. - 'towny.nation.delete'
  73. - 'towny.nation.grant-titles'
  74. - 'towny.nation.new'
  75. - 'towny.nation.rename'
  76. - 'towny.chat.town'
  77. - 'towny.chat.nation'
  78. - 'towny.wild.*'
  79. - 'preciousstones.benefit.create.protection'
  80. - 'essentials.kit.Starter'
  81. Mod:
  82. default: false
  83. info:
  84. prefix: '&1'
  85. suffix: '&1'
  86. build: true
  87. inheritance:
  88. - Member
  89. permissions:
  90. - 'modplugin.ban'
  91. - 'modplugin.kick'
  92. - 'modplugin.unban'
  93. - 'warpplugin.warp'
  94. - 'econplugin.basic.*'
  95. - 'ChestShop.shop.create'
  96. - 'ChestShop.shop.sell'
  97. - 'ChestShop.shop.buy'
  98. - 'towny.town.resident'
  99. - 'towny.town.rename'
  100. - 'towny.town.plot'
  101. - 'towny.town.new'
  102. - 'towny.town.delete'
  103. - 'towny.town.claim'
  104. - 'towny.town.spawn.town'
  105. - 'towny.nation.delete'
  106. - 'towny.nation.grant-titles'
  107. - 'towny.nation.new'
  108. - 'towny.nation.rename'
  109. - 'towny.chat.town'
  110. - 'towny.chat.nation'
  111. - 'towny.wild.*'
  112. Admin:
  113. default: false
  114. info:
  115. prefix: '&4'
  116. suffix: '&4'
  117. build: true
  118. inheritance:
  119. permissions:
  120. - '*'
  121. OWNER:
  122. default: false
  123. info:
  124. prefix: '&3'
  125. suffix: '&3'
  126. build: true
  127. inheritance:
  128. permissions:
  129. - '*'
  130.  
  131.  
  132.  
  133.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement