Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.04 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. # 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: true
  67. inheritance:
  68. permissions:
  69. - 'essentials.getpos'
  70. - 'essentials.tpa'
  71. - 'essentials.tpaccept'
  72. - 'essentials.tpdeny'
  73. - 'essentials.pay'
  74. - 'essentials.balance'
  75. - 'essentials.msg'
  76. - 'essentials.afk'
  77. - 'SpawnControl.sethome.basic'
  78. - 'SpawnControl.home.basic'
  79. - 'SpawnControl.spawn.use'
  80. - 'mcmmo.commands.ability'
  81. - 'mcmmo.commands.ptp'
  82. - 'mcmmo.commands.party'
  83. - 'mcmmo.commands.whois'
  84. - 'mcmmo.commands.myspawn'
  85. - 'mcmmo.commands.setmyspawn'
  86. - 'mcmmo.commands.setmyspawnother'
  87. - 'mcmmo.ability.woodcutting'
  88. - 'mcmmo.ability.mining' - Allow Ability use
  89. - 'mcmmo.ability.axes' - Allow Ability use
  90. - 'mcmmo.ability.excavation' - Allow Ability use
  91. - 'mcmmo.ability.swords' - Allow Ability use
  92. - 'mcmmo.ability.unarmed' - Allow Ability use
  93. - 'mcmmo.ability.herbalism' - Allow Ability use
  94. - 'essentials.signs.protection.create'
  95. - 'essentials.signs.protection.use'
  96. Builder:
  97. default: false
  98. info:
  99. prefix: 'Mod'
  100. suffix: ''
  101. build: true
  102. inheritance: Default
  103. permissions:
  104. - 'essentials.signs.free.use'
  105. - 'essentials.signs.heal.use'
  106. - 'essentials.signs.disposal.use'
  107. Moderator:
  108. default: false
  109. info:
  110. prefix: 'Mod'
  111. suffix: ''
  112. build: true
  113. inheritance: Default
  114. permissions:
  115. - 'essentials.signs.free.create'
  116. - 'mcmmo.commands.setmyspawnother'
  117. - 'mcmmo.tools.mmoedit' - Let players freely edit and manipulate mcMMO stats with /mmoedit
  118. - 'mcmmo.tools.mcgod' - Enables /mcgod godmode command
  119. - 'mcmmo.tools.mcrefresh' - Refresh all your or another players cooldowns with /mcrefresh <playername>
  120. Admins:
  121. default: false
  122. info:
  123. prefix: 'Admin'
  124. suffix: ''
  125. build: true
  126. inheritance:
  127. permissions:
  128. - '*'
  129.  
  130. ##
  131. # Users denote which users are included in which group.
  132. # TheNo1Yeti is in the Admin group
  133. # Herpina is a member of the Moderator group but also has access
  134. # to the herp.derp permissions
  135. # Derpina is a member of the admin group but does not have access
  136. # to the derp.derp permission node
  137. # Users can also have a prefix and suffix as seen with Herpina
  138. ##
  139. users:
  140. kennis942:
  141. group: Admins
  142. permissions:
  143. - '*'
  144. javahut:
  145. group: Admnis
  146. permissions:
  147. - '*'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement