Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 1st, 2012  |  syntax: None  |  size: 3.56 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. # System is no longer used, but may become used in the future
  2. # Copies is for multiple-world support
  3. #   Put the name of the world you wish for it to be a clone of, otherwise leave it empty.
  4. #   If this file is for your default world (the one in server.properties) then you must
  5. #   leave copies blank.
  6. #  Example: copies: Derp    -  This will clone the permissions of the world Derp
  7. #
  8. # Make sure to rename this file to the name of the world that is in sever.properties under
  9. # level-name.  So if it is level-name: world  then this should be world.yml and in the
  10. # plugins/Permissions directory (ie. plugins/Permissions/world.yml)
  11. #
  12. # NOTE: Do not use tabs while editing this document.  Use only spaces.  A good way to avoid
  13. # doing this is to use Notepad++ and replace the tab with 4 spaces.
  14. plugin:
  15.     permissions:
  16.         system: default
  17.         copies:
  18.  
  19. ##        
  20. # AntiBuild is included with this.  To disable a group from being able to build then
  21. # set the build: flag to false (build: false).  If you want a group to be able to build
  22. # then set it to true.
  23. ##
  24. # Groups can contain inheritance.
  25. #   To make a group inherit the permissions from another
  26. #   group simply place the groups name in the "inheritance:" like so:
  27. #
  28. #   Example:
  29. #       inheritance:
  30. #           - Default
  31. ##
  32. #   All permissions including the asterisks must be placed in single quotes.
  33. #   like so:
  34. #
  35. #       - 'foo.bar'
  36. #
  37. #   Otherwise errors will happen!
  38. ##
  39. #   Globalized Permission settings:
  40. #
  41. #       If a permission contains periods (.) you can denote a globalized parameter:
  42. #
  43. #           - 'foo.*'
  44. #
  45. #       This will allow you to use all general commands.
  46. #
  47. ##
  48. #   Single Asterisk denotes all commands:
  49. #
  50. #       - '*'
  51. #   If you give a group this permissions, do not have the group inherit any permissions
  52. #   from other groups.  Any users assigned to this group should NOT be given any additional
  53. #   permissions either.
  54. ##
  55. #   To exempt a node use the - prefix like so:
  56. #       - '-foo.bar'
  57. ##
  58. #   prefix: and suffix: do not do anything on their own.  You need another outside plugin
  59. #   such as iChat or HeroChat in order for these to do anything.
  60. groups:
  61.     Default:
  62.         default: true
  63.         info:
  64.             prefix: ''
  65.             suffix: ''
  66.             build: false
  67.         inheritance:
  68.         permissions:
  69.             - 'iConomy.payment'
  70.             - 'iConomy.rank'
  71.             - 'iConomy.admin.set'
  72.             - 'lwc.protect'
  73.             - 'deathtpplus.deathtp'
  74.            
  75.     Moderator:
  76.         default: false
  77.         info:
  78.             prefix: ''
  79.             suffix: ''
  80.             build: true
  81.         inheritance:
  82.             - Default
  83.         permissions:
  84.             - 'bar.foo'
  85.     Admins:
  86.         default: false
  87.         info:
  88.             prefix: ''
  89.             suffix: ''
  90.             build: true
  91.         inheritance:
  92.         permissions:
  93.             - '*'
  94.  
  95. ##
  96. # Users denote which users are included in which group.
  97. # TheNo1Yeti is in the Admin group
  98. # Herpina is a member of the Moderator group but also has access
  99. # to the herp.derp permissions
  100. # Derpina is a member of the admin group but does not have access
  101. # to the derp.derp permission node
  102. # Users can also have a prefix and suffix as seen with Herpina
  103. ##
  104. users:
  105.     David:
  106.         group: Admins
  107.         permissions:
  108.    jason:
  109.         group: Moderator
  110.         info:
  111.             prefix: 'Moo'
  112.             suffix: 'Cow'
  113.         permissions:
  114.             - 'herp.derp'
  115.     harry:
  116.         group: Admins
  117.         permissions:
  118.             - '-derp.derp'