Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2011
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.44 KB | None | 0 0
  1. plugin:
  2.     permissions:
  3.         system: default
  4.  
  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:"
  9. #   field seperated by commas.
  10. #
  11. #   Example: inheritance: Default,Admins,
  12. ##
  13. #   All permissions including the asterisks must be placed in single quotes.
  14. #   like so:
  15. #
  16. #       - 'general.spawn'
  17. #
  18. #   Otherwise errors will happen!
  19. ##
  20. #   Globalized Permission settings:
  21. #
  22. #       If a permission contains periods (.) you can denote a globalized parameter:
  23. #
  24. #           - 'general.*'
  25. #
  26. #       This will allow you to use all general commands.
  27. #
  28. ##
  29. #
  30. #   Single Asterisk denotes all commands:
  31. #
  32. #       - '*'
  33. ##
  34. groups:
  35.     Default:
  36.         default: true
  37.         info:
  38.             prefix:
  39.             suffix:
  40.             build: false
  41.         inheritance:
  42.         permissions:
  43.             - 'general.spawn'
  44.             - 'general.player-info'
  45.             - 'general.help'
  46.             - 'essentials.mail'
  47.     Member:
  48.         default: false
  49.         info:
  50.             prefix: '§2'
  51.             suffix:
  52.             build: true
  53.         inheritance:
  54.             - Default
  55.         permissions:
  56.             - 'lwc.protect'
  57.             - 'essentials.mail'
  58.     Vip:
  59.         default: false
  60.         info:
  61.             prefix: '§6'
  62.             suffix:
  63.             build: true
  64.         inheritance:
  65.             - Member
  66.         permissions:
  67.             - 'essentials.home'
  68.             - 'essentials.sethome'
  69.             - 'essentials.mail'
  70.             - 'SimpleWarp.warp'
  71.     Moderator:
  72.         default: false
  73.         info:
  74.             prefix: '§b'
  75.             suffix:
  76.             build: true
  77.         inheritance:
  78.             - Member
  79.         permissions:
  80.             - 'general.time'
  81.             - 'general.teleport'
  82.             - 'general.teleport.here'
  83.             - 'general.player-info'
  84.             - 'lwc.mod'
  85.             - 'essentials.mail'
  86.     Admins:
  87.         default: false
  88.         info:
  89.             prefix: '§4'
  90.             suffix:
  91.             build: true
  92.         inheritance:
  93.             - Moderator
  94.         permissions:
  95.             - '*'
  96.             - 'lwc.admin'
  97.             - /WorldEdit
  98.             - /worldeditselect
  99.             - /worldeditbedrock
  100.             - 'general.reload'
  101.             - 'SimpleWarp.setwarp'
  102.             - 'SimpleWarp.listwarps'
  103.             - 'SimpleWarp.removewarp'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement