Advertisement
Guest User

sethimine globalgroups

a guest
Jul 1st, 2011
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.88 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: true
  46. info:
  47. prefix: '[Guest]'
  48. suffix: '[/]'
  49. build: false
  50. inheritance:
  51. permissions:
  52. - 'commandbook.whereami'
  53. - 'commandbook.whereami.compass'
  54. - 'commandbook.call'
  55. - 'commandbook.spawn'
  56. - 'commandbook.motd'
  57. - 'commandbook.who'
  58. - 'commandbook.rules'
  59. - 'lwc.blockinventory'
  60.  
  61. Builder:
  62. default: false
  63. info:
  64. prefix: '[Builder]'
  65. suffix: '[/]'
  66. build: true
  67. inheritance:
  68. - Default
  69. permissions:
  70. - 'commandbook.kit.list'
  71. - 'commandbook.kit.kits.[kit]
  72. - 'commandbook.time.check'
  73. - 'commandbook.say'
  74. - 'commandbook.say.me'
  75. - 'commandbook.msg'
  76. - 'commandbook.slap'
  77. - 'commandbook.slap.other'
  78. - 'commandbook.whois'
  79. - 'commandbook.whois.other'
  80. - 'lwc.protect'
  81. Moderator:
  82. default: false
  83. info:
  84. prefix: '[Moderator]'
  85. suffix: '[/]'
  86. build: true
  87. inheritance:
  88. - Builder
  89. permissions:
  90. - 'commandbook.give'
  91. - 'commandbook.give.other'
  92. - 'commandbook.more'
  93. - 'commandbook.time'
  94. - 'commandbook.spawnmob'
  95. - 'commandbook.spawnmob.many'
  96. - 'commandbook.teleport'
  97. - 'commandbook.teleport.other'
  98. - 'commandbook.return'
  99. - 'commandbook.broadcast'
  100. - 'commandbook.mute'
  101. - 'commandbook.rocket'
  102. - 'commandbook.rocket.other'
  103. - 'commandbook.barrage'
  104. - 'commandbook.barrage.other'
  105. - 'commandbook.shock'
  106. - 'commandbook.shock.other'
  107. - 'commandbook.kick'
  108. - 'commandbook.bans.ban'
  109. - 'commandbook.bans.unban'
  110. - 'commandbook.bans.isbanned'
  111. - 'worldedit.*'
  112. - 'lwc.mod'
  113. - 'voxelair.*'
  114. - 'worldguard.*'
  115. - 'permissions.*'
  116. Admins:
  117. default: false
  118. info:
  119. prefix: '[TheBoss]'
  120. suffix: '[/]'
  121. build: true
  122. inheritance:
  123. permissions:
  124. - '*'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement