Advertisement
Chasingu

groups.yml

Jun 28th, 2011
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.64 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: true
  39.         inheritance:
  40.         permissions:
  41.            - 'essentials.help'
  42.             - 'essentials.signs.trade.create'
  43.             - 'essentials.signs.trade.use'
  44.             - 'essentials.signs.buy.use'
  45.             - 'essentials.signs.sell.use'
  46.             - 'essentials.signs.balance.use'
  47.             - 'essentials.back'
  48.             - 'essentials.back.ondeath'
  49.             - 'essentials.tpa'
  50.             - 'essentials.tpaccept'
  51.             - 'essentials.tpdeny'
  52.             - 'essentials.home'
  53.             - 'essentials.sethome'
  54.             - 'essentials.warp'
  55.             - 'essentials.warp.list'
  56.             - 'essentials.balance'
  57.             - 'essentials.pay'
  58.             - 'essentials.afk'
  59.             - 'essentials.me'
  60.             - 'essentials.list'
  61.             - 'essentials.mail'
  62.             - 'essentials.mail.send'
  63.             - 'essentials.nick'
  64.             - 'essentials.gc'
  65.             - 'tetris.use'
  66.             - 'lockette.user.create.*'
  67.             - 'bookworm.create'
  68.             - 'bookworm.write.own'
  69.             - 'bookworm.copy.own'
  70.             - 'bookworm.copy.others'
  71.             - 'bookworm.remove.own'
  72.             - 'bookworm.destroy.own'
  73.     Moderator:
  74.         default: false
  75.         info:
  76.             prefix: ''
  77.             suffix: ''
  78.             build: true
  79.         inheritance:
  80.            - Default
  81.         permissions:
  82.            - 'bar.foo'
  83.     Admins:
  84.         default: false
  85.         info:
  86.             prefix: ''
  87.             suffix: ''
  88.             build: true
  89.         inheritance:
  90.         permissions:
  91.            - '*'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement