Advertisement
Guest User

King Craft perms

a guest
Sep 27th, 2011
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 3.89 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.  
  43. groups:
  44.     Guest:
  45.         default: true
  46.         info:
  47.             prefix: '&8'
  48.             suffix: ''
  49.             build: false
  50.         permissions:
  51.             - 'lwc.deny'
  52.     Member:
  53.         default: false
  54.         info:
  55.             interact: true
  56.             prefix: '&e'
  57.             suffix: ''
  58.             build: true
  59.         inheritance:
  60.         permissions:
  61.             - 'mobarena.use.join'
  62.             - 'mobarena.use.leave'
  63.             - 'mobarena.use.spectate'
  64.             - 'iConomy.user'
  65.             - 'iConomy.payment'
  66.             - 'iConomy.holdings'
  67.             - 'choptree.chop'
  68.             - 'SignShop.Signs.*'
  69.             - 'lwc.protect'
  70.             - 'mobbounty.collect'
  71.             - '
  72.    Builder:
  73.        default: false
  74.        info:
  75.            prefix: ''
  76.            suffix: ''
  77.            build: true
  78.            interact: true
  79.        inheritance:
  80.            - Member
  81.        permissions:
  82.            - 'multiverse.access.*'
  83.            - '&2'
  84.    Moderator:
  85.        default: false
  86.        info:
  87.            prefix: '&9'
  88.            suffix: ''
  89.            build: true
  90.            interact: true
  91.        inheritance:
  92.            - Builder
  93.        permissions:
  94.            - 'falsebook.blocks.*'
  95.            - 'mobarena.setup.arena'
  96.            - 'mobarena.setup.setarena'
  97.            - 'mobarena.setup.addarena'
  98.            - 'mobarena.setup.delarena'
  99.            - 'mobarena.setup.editarena'
  100.            - 'mobarena.setup.setregion'
  101.            - 'mobarena.setup.expandregion'
  102.            - 'mobarena.setup.showregion'
  103.            - 'mobarena.setup.setlobbyregion'
  104.            - 'mobarena.setup.expandlobbyregion'
  105.            - 'mobarena.setup.setwarp'
  106.            - 'mobarena.setup.spawnpoints'
  107.            - 'mobarena.setup.addspawn'
  108.            - 'mobarena.setup.delspawn'
  109.            - 'mobarena.setup.autogenerate'
  110.            - 'mobarena.setup.autodegenerate'
  111.            - 'iconomy.*'
  112.            - 'choptree.command.change'
  113.            - 'choptree.command.reload'
  114.            - 'SignShop.Admin.*'
  115.            - 'lwc.mod'
  116.            - 'mobbounty.*'
  117.            - 'bb.admin.watch'
  118.            - 'bb.admin.info'
  119.            - 'bb.admin.watch'
  120.            - 'bb.admin.rollback'
  121.    Admins:
  122.        default: false
  123.        info:
  124.            prefix: '&c'
  125.            suffix: ''
  126.            build: true
  127.            interact: true
  128.        inheritance:
  129.            - Moderator
  130.        permissions:
  131.            - '*'
  132.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement