Advertisement
Guest User

Untitled

a guest
Sep 9th, 2011
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.68 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: ''
  48. suffix: ''
  49. build: true
  50. inheritance:
  51. permissions:
  52. Moderator:
  53. default: false
  54. info:
  55. prefix: ''
  56. suffix: ''
  57. build: true
  58. inheritance:
  59. - Guest
  60. permissions:
  61. - '*'
  62. Co-Owner:
  63. default: false
  64. info:
  65. prefix: ''
  66. suffix: ''
  67. build: true
  68. inheritance:
  69. permissions:
  70. - '*'
  71. Owner:
  72. default: false
  73. info:
  74. prefix: ''
  75. suffix: ''
  76. build: true
  77. inheritance:
  78. permissions:
  79. - '*'
  80.  
  81.  
  82. And the Users:
  83.  
  84. users:
  85. G650:
  86. groups:
  87. - Owner
  88. permissions:
  89. FriendA:
  90. info:
  91. prefix: '&4[~Alice~]&f'
  92. groups:
  93. - Moderator
  94. permissions:
  95. FriendB:
  96. groups:
  97. - Moderator
  98. permissions:
  99. - warpplugin.manage.*
  100. NewGuy:
  101. groups:
  102. - Guest
  103. Herpina:
  104. groups:
  105. - Member
  106. Derpina:
  107. groups:
  108. - Member
  109.  
  110.  
  111.  
  112.  
  113. SO what do i put in the permissions.yml?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement