fernferret

Untitled

Jun 21st, 2011
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.75 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. #   Globalized Permission settings:
  15. #
  16. #       If a permission contains periods (.) you can denote a globalized parameter:
  17. #
  18. #           - 'foo.*'
  19. #
  20. #       This will allow you to use all general commands.
  21. #
  22. ##
  23. #   Single Asterisk denotes all commands:
  24. #
  25. #       - '*'
  26. ##
  27. #   To exempt a node use the - prefix like so:
  28. #       - '-foo.bar'
  29. ##
  30. #   prefix: and suffix: do not do anything on their own.  You need another outside plugin
  31. #   such as iChat or HeroChat in order for these to do anything.
  32. groups:
  33.     Default:
  34.         default: true
  35.         info:
  36.             prefix: ''
  37.             suffix: ''
  38.             build: false
  39.         inheritance:
  40.         permissions:
  41.            - 'foo.bar'
  42.             - essentials.spawn
  43.     Moderator:
  44.         default: false
  45.         info:
  46.             prefix: ''
  47.             suffix: ''
  48.             build: true
  49.         inheritance:
  50.            - Default
  51.         permissions:
  52.            - 'bar.foo'
  53.             - essentials.spawn
  54.             - essentials.setspawn
  55.             - essentials.time
  56.             - essentials.sethome
  57.             - essentials.home
  58.             - lwc.protect
  59.     Admins:
  60.         default: false
  61.         info:
  62.             prefix: ''
  63.             suffix: ''
  64.             build: true
  65.         inheritance:
  66.         permissions:
  67.            - '*'
Add Comment
Please, Sign In to add comment