Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2013
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.46 KB | None | 0 0
  1. # PermissionsBukkit configuration file
  2. #
  3. # A permission node is a string like 'permissions.build', usually starting
  4. # with the name of the plugin. Refer to a plugin's documentation for what
  5. # permissions it cares about. Each node should be followed by true to grant
  6. # that permission or false to revoke it, as in 'permissions.build: true'.
  7. # Some plugins provide permission nodes that map to a group of permissions -
  8. # for example, PermissionsBukkit has 'permissions.*', which automatically
  9. # grants all admin permissions. You can also specify false for permissions
  10. # of this type.
  11. #
  12. # Users inherit permissions from the groups they are a part of. If a user is
  13. # not specified here, or does not have a 'groups' node, they will be in the
  14. # group 'default'. Permissions for individual users may also be specified by
  15. # using a 'permissions' node with a list of permission nodes, which will
  16. # override their group permissions. World permissions may be assigned to
  17. # users with a 'worlds:' entry.
  18. #
  19. # Groups can be assigned to players and all their permissions will also be
  20. # assigned to those players. Groups can also inherit permissions from other
  21. # groups. Like user permissions, groups may override the permissions of their
  22. # parent group(s). Unlike users, groups do NOT automatically inherit from
  23. # default. World permissions may be assigned to groups with a 'worlds:' entry.
  24. #
  25. # The cannot-build message is configurable. If it is left blank, no message
  26. # will be displayed to the player if PermissionsBukkit prevents them from
  27. # building, digging, or interacting with a block. Use '&' characters to
  28. # signify color codes.
  29.  
  30. users:
  31. diru:
  32. permissions:
  33. groups:
  34. - admin
  35. auratay:
  36. permissions:
  37. groups:
  38. - admin
  39. unexistance:
  40. permissions:
  41. groups:
  42. - admin
  43. ragnorokxx:
  44. permissions:
  45. groups:
  46. - admin
  47. jokerpotter:
  48. permissions:
  49. groups:
  50. - admin
  51. groups:
  52. default:
  53. permissions:
  54. permissions.build: false
  55. civilian:
  56. permissions:
  57. permissions.build: true
  58. essentials.pay: true
  59. essentials.sell: true
  60. essentials.afk: true
  61. essentials.worth: true
  62. essentials.time: true
  63. essentials.balance: true
  64. essentials.mail: true
  65. essentials.mail.send: true
  66. essentials.me: true
  67. essentials.msg: true
  68. essentials.msg.color: true
  69. essentials.rules: true
  70. essentials.suicide: true
  71. inheritance:
  72. builder:
  73. permissions:
  74. worldedit.*: true
  75. essentials.bigtree: true
  76. essentials.fly: true
  77. essentials.fly.others: true
  78. esentials.gamemode: true
  79. essentials.gamemode.others: true
  80. essentials.tree: true
  81. inheritance:
  82. - civilian
  83. guard:
  84. permissions:
  85. worldedit.wand: true
  86. worldguard.*: true
  87. worldguard.god: false
  88. worldguard.ungod: false
  89. worldguard.heal: false
  90. worldguard.slay: false
  91. inheritance:
  92. - civilian
  93. banker:
  94. permissions:
  95. permissions.*: true
  96. essentials.balance: true
  97. essentials.balance.others: true
  98. essentials.balancetop: true
  99. essentials.eco: true
  100. essentials.weather: true
  101. inheritance:
  102. - civilian
  103. gamekeeper:
  104. permissions:
  105. permissions.*: true
  106. inheritance:
  107. - civilian
  108. admin:
  109. permissions:
  110. permissions.*: true
  111. essentials.fly: true
  112. essentials.fly.others: true
  113. esentials.gamemode: true
  114. essentials.gamemode.others: true
  115. essentials.balance.others: true
  116. essentials.balancetop: true
  117. essentials.eco: true
  118. essentials.kick: true
  119. essentials.broadcast: true
  120. esentials.invsee: true
  121. essentials.jails: true
  122. essentials.setjail: true
  123. inheritance:
  124. - civilian
  125. user:
  126. permissions:
  127. permissions.build: true
  128. worlds:
  129. creative:
  130. coolplugin.item: true
  131. inheritance:
  132. - default
  133. messages:
  134. build: '&cYou do not have permission to build here.'
  135.  
  136. debug: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement