Advertisement
Guest User

Groups

a guest
Jun 3rd, 2011
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.99 KB | None | 0 0
  1. ##        
  2. # AntiBuild is included with this.  To disable a group from being able to build then
  3. # set the build: flag to false (build: false).  If you want a group to be able to build
  4. # then set it to true.
  5. ##
  6. # Groups can contain inheritance.
  7. #   To make a group inherit the permissions from another
  8. #   group simply place the groups name in the "inheritance:" like so:
  9. #
  10. #   Example:
  11. #       inheritance:
  12. #           - Default
  13. ##
  14. #   All permissions including the asterisks must be placed in single quotes.
  15. #   like so:
  16. #
  17. #       - 'foo.bar'
  18. #
  19. #   Otherwise errors will happen!
  20. ##
  21. #   Globalized Permission settings:
  22. #
  23. #       If a permission contains periods (.) you can denote a globalized parameter:
  24. #
  25. #           - 'foo.*'
  26. #
  27. #       This will allow you to use all general commands.
  28. #
  29. ##
  30. #   Single Asterisk denotes all commands:
  31. #
  32. #       - '*'
  33. #   If you give a group this permissions, do not have the group inherit any permissions
  34. #   from other groups.  Any users assigned to this group should NOT be given any additional
  35. #   permissions either.
  36. ##
  37. #   To exempt a node use the - prefix like so:
  38. #       - '-foo.bar'
  39. ##
  40. #   prefix: and suffix: do not do anything on their own.  You need another outside plugin
  41. #   such as iChat or HeroChat in order for these to do anything.
  42. groups:
  43.     Default:
  44.         default: true
  45.         info:
  46.             prefix: ''
  47.             suffix: ''
  48.             build: true
  49.         inheritance:
  50.         permissions:
  51.            - 'lwc.protect'
  52.             - 'essentials.home'
  53.             - 'essentials.sethome
  54.             - 'essentials.list'
  55.     Moderator:
  56.         default: false
  57.         info:
  58.             prefix: ''
  59.             suffix: ''
  60.             build: true
  61.         inheritance:
  62.            - Default
  63.         permissions:
  64.            - '*'
  65.     Admins:
  66.         default: false
  67.         info:
  68.             prefix: ''
  69.             suffix: ''
  70.             build: true
  71.         inheritance:
  72.         permissions:
  73.            - '*'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement