Advertisement
Guest User

groups fixed

a guest
Jun 27th, 2011
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 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. groups:
  43.     Player:
  44.         default: true
  45.         info:
  46.             prefix: '&2[PLAYER]&3'
  47.             suffix: ''
  48.             build: true
  49.         inheritance:
  50.         permissions:
  51.         - 'falsebook.cart.*'
  52.          - 'falsebook.blocks.*'
  53.          - 'admincmd.player.list'
  54.          - 'adminicmd.spawn.tp'
  55.          - 'homeX.*'
  56.  
  57.     Moderator:
  58.         default: false
  59.         info:
  60.             prefix: '&1[MOD]&3'
  61.             suffix: ''
  62.             build: true
  63.         inheritance:
  64.            - Member
  65.         permissions:
  66.          - 'modplugin.ban'
  67.           - 'modplugin.kick'
  68.           - 'modplugin.unban'
  69.           - 'admincmd.tp.to'
  70.           - 'admincmd.tp'
  71.  
  72.     Admin:
  73.         default: false
  74.         info:
  75.             prefix: '&4[ADMIN]&3'
  76.             suffix: ''
  77.             build: true
  78.         inheritance:
  79.         permissions:
  80.            - '*'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement