Advertisement
blurbninja

Permissions groups.yml 22/10/11

Oct 21st, 2011
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 4.56 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.            - 'bPermissions.build'
  52.             - 'essentials.helpop'
  53.             - 'essentials.tpa'
  54.             - 'essentials.tpaccept'
  55.             - 'essentials.tpahere'
  56.             - 'essentials.tpdeny'  
  57.             - 'essentials.tphere'  
  58.             - 'essentials.tpo' 
  59.             - 'essentials.tpohere'
  60.             - 'essentials.tppos'
  61.             - 'essentials.help'
  62.             - 'essentials.suicide'
  63.             - 'essentials.msg'
  64.             - 'essentials.nick'
  65.             - 'essentials.give'
  66.             - 'essentials.spawnmob'
  67.             - 'essentials.spawn'
  68.             - 'essentials.back'
  69.             - 'essentials.home'
  70.             - 'essentials.setsome'
  71.             - 'essentials.warp'
  72.             - 'worldedit.clipboard.copy'
  73.             - 'worldedit.clipboard.paste'
  74.             - 'worldedit.clipboard.clear'
  75.             - 'worldedit.clipboard.flip'
  76.             - 'worldedit.generation.cylinder'
  77.             - 'worldedit.generation.cylinder'
  78.             - 'worldedit.generation.sphere'
  79.             - 'worldedit.generation.sphere'
  80.             - 'worldedit.generation.forest'
  81.             - 'worldedit.generation.pumpkins'
  82.             - 'worldedit.generation.pyramid'
  83.             - 'worldedit.generation.pyramid'
  84.             - 'worldedit.history.undo'
  85.             - 'worldedit.history.redo'
  86.             - 'worldedit.region.replace'
  87.             - 'worldedit.region.stack'
  88.             - 'worldedit.region.smooth'
  89.             - 'worldedit.selection.shift'
  90.             - 'worldedit.selection.chunk'
  91.             - 'worldedit.selection.expand'
  92.             - 'worldedit.selection.contract'
  93.             - 'worldedit.selection.hpos'
  94.             - 'worldedit.selection.hpos'
  95.             - 'worldedit.wand'
  96.             - 'worldedit.fixwater'
  97.             - 'worldedit.fixlava'
  98.             - 'worldedit.snow'
  99.             - 'worldedit.extinguish'
  100.             - 'worldedit.butcher'
  101.     Moderator:
  102.         default: false
  103.         info:
  104.             prefix: ''
  105.             suffix: ''
  106.             build: true
  107.         inheritance:
  108.            - Default
  109.         permissions:
  110.            - 'banhammer.ban'
  111.             - 'banhammer.check'
  112.             - 'banhammer.history'
  113.             - 'banhammer.kick'
  114.             - 'banhammer.recent'
  115.             - 'banhammer.tempban'
  116.             - 'worldguard.region.removeowner.own.*'
  117.             - 'worldguard.region.removeowner.member.*'
  118.             - 'worldguard.region.removeowner.*'
  119.             - 'worldguard.region.list'
  120.             - 'worldguard.region.define'
  121.             - 'worldguard.region.remove.*'
  122.             - 'essentials.signs.create*'
  123.             - 'essentials.signs.use.*'
  124.             - 'essentials.signs.break.'
  125.             - 'worldedit.remove'
  126.             - 'logblock.*'
  127.             - 'logblock.rollback'
  128.             - 'logblock.tools.tool'
  129.             - 'logblock.tools.toolblock'
  130.             - 'logblock.tp'
  131.             - 'logblock.lookup'
  132.     Admins:
  133.         default: true
  134.         info:
  135.             prefix: ''
  136.             suffix: ''
  137.             build: true
  138.         inheritance:
  139.         permissions:
  140.            - '*'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement