Advertisement
Guest User

7craft Permissions

a guest
Mar 1st, 2011
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.40 KB | None | 0 0
  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. # Does not work for the default world.
  5. # Example: copies: Derp - This will clone the permissions of the world Derp
  6. plugin:
  7. permissions:
  8. system: default
  9. copies:
  10.  
  11. # Groups can contain inheritance.
  12. # To make a group inherit the permissions from another
  13. # group simply place the groups name in the "inheritance:" like so:
  14. #
  15. # Example:
  16. # inheritance:
  17. # - Default
  18. ##
  19. # All permissions including the asterisks must be placed in single quotes.
  20. # like so:
  21. #
  22. # - 'general.spawn'
  23. #
  24. # Otherwise errors will happen!
  25. ##
  26. # Globalized Permission settings:
  27. #
  28. # If a permission contains periods (.) you can denote a globalized parameter:
  29. #
  30. # - 'general.*'
  31. #
  32. # This will allow you to use all general commands.
  33. #
  34. ##
  35. # Single Asterisk denotes all commands:
  36. #
  37. # - '*'
  38. ##
  39. # To exempt a node use the - prefix like so:
  40. # - '-general.time'
  41. ##
  42. groups:
  43. Default:
  44. default: true
  45. info:
  46. prefix: ''
  47. suffix: ''
  48. build: true
  49. inheritance:
  50. permissions:
  51. - 'general.spawn'
  52. - 'iConomy.payment'
  53. - 'iConomy.list'
  54. - 'iConomy.rank'
  55. - 'essentials.afk.'
  56. - 'essentials.msg'
  57. - 'essentials.me'
  58. - 'essentials.list'
  59. - 'essentials.helpop'
  60. - 'essentials.whois'
  61. - 'essentials.signs.protection.create'
  62. - 'essentials.signs.protection.use'
  63. - 'essentials.tpa'
  64. - 'essentials.tpaccept'
  65. - 'essentials.tpadeny'
  66. - 'essentials.home'
  67. - 'essentials.sethome'
  68. - 'essentials.spawn'
  69. - 'essentials.warp'
  70. - 'essentials.home*'
  71. Moderator:
  72. default: false
  73. info:
  74. prefix: ''
  75. suffix: ''
  76. build: true
  77. inheritance:
  78. - Default
  79. permissions:
  80. - 'bar.foo'
  81. Admins:
  82. default: false
  83. info:
  84. prefix: ''
  85. suffix: ''
  86. build: true
  87. inheritance:
  88. permissions:
  89. - '*'
  90. - 'multiverse.world.create'
  91. - 'multiverse.world.import'
  92. - 'multiverse.world.remove'
  93. - 'multiverse.tp'
  94. - 'multiverse.world.setspawn'
  95. - 'multiverse.world.spawn'
  96. - 'multiverse.list'
  97. - 'multiverse.portal.create'
  98. - 'multiverse.portal.select'
  99. - 'multiverse.portal.destination'
  100. - 'multiverse.portal.remove'
  101. - 'multiverse.portal.list'
  102.  
  103. ##
  104. # Users denote which users are included in which group.
  105. # TheNo1Yeti is in the Admin group
  106. # Herpina is a member of the Default group but also has access
  107. # to the herp.derp permissions
  108. # Derpina is a member of the admin group but does not have access
  109. # to the derp.derp permission node
  110. ##
  111. users:
  112. Sixenseven:
  113. group: Admins
  114. permissions:
  115. - '*'
  116. Herpina:
  117. group: Moderator
  118. permissions:
  119. - 'herp.derp'
  120. Derpina:
  121. group: Admins
  122. permissions:
  123. - '-derp.derp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement