Advertisement
Guest User

Untitled

a guest
Jul 28th, 2011
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.29 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. Default:
  45. default: true
  46. info:
  47. prefix: ''
  48. suffix: ''
  49. build: false
  50. inheritance:
  51. Member:
  52. default: false
  53. info:
  54. prefix: ''
  55. suffix: ''
  56. build: true
  57. inheritance:
  58. - Default
  59. permissions:
  60. - 'warpplugin.warp'
  61. - 'econplugin.basic'
  62. Moderator:
  63. default: false
  64. info:
  65. prefix: ''
  66. suffix: ''
  67. build: true
  68. inheritance:
  69. - Member
  70. permissions:
  71. - 'modplugin.ban'
  72. - 'modplugin.kick'
  73. - 'modplugin.unban'
  74. Admins:
  75. default: false
  76. info:
  77. prefix: ''
  78. suffix: ''
  79. build: true
  80. inheritance:
  81. permissions:
  82. - '*'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement