Advertisement
kingmob

mcp1

Mar 26th, 2011
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.76 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. Visitante:
  62. default: true
  63. info:
  64. prefix: '&7[Visitante]'
  65. suffix: ''
  66. build: false
  67. inheritance:
  68. permissions:
  69. - 'general.spawn'
  70. - 'general.time'
  71. - 'general.playerlist'
  72. - 'lwc.blockinventory'
  73. - 'guestprev.interact.buttons'
  74. - 'guestprev.interact.levers'
  75. - 'guestprev.interact.pressures'
  76. - 'guestprev.open.doors'
  77. - 'guestprev.enter.boats'
  78. - 'guestprev.enter.minecarts'
  79. - 'guestprev.bypass.maxguests'
  80. - 'guestprev.interact.ladders'
  81. - 'guestprev.access.commands'
  82. - 'guestprev.bypass.walls'
  83. Registrado:
  84. default: false
  85. info:
  86. prefix: ''
  87. suffix: ''
  88. build: true
  89. inheritance:
  90. - Visitante
  91. permissions:
  92. - 'general.who'
  93. - 'general.getpos'
  94. - 'general.tell'
  95. - 'general.away'
  96. - 'lwc.protect'
  97. - 'myhome.home.*'
  98. - 'myhome.home.soc.*'
  99. - 'wormhole.use.dialer'
  100. - 'wormhole.use.sign'
  101. - 'iConomy.payment'
  102. - 'iConomy.rank'
  103. - 'iConomy.list'
  104. - 'dynamicmarket.access'
  105. - 'dynamicmarket.buy'
  106. - 'dynamicmarket.sell'
  107. - 'iMonster.User'
  108. - 'mcmmo.motd'
  109. - 'mcmmo.skills.*'
  110. - 'mcmmo.regeneration'
  111. - 'guestprev.is.authorized'
  112. - 'mcbans.vote.kick'
  113. - 'mcbans.vote'
  114. - 'vampire.default.*'
  115. Moderador:
  116. default: false
  117. info:
  118. prefix: '&c[Mod]'
  119. suffix: ''
  120. build: true
  121. inheritance:
  122. - Registrado
  123. permissions:
  124. - 'mcbans.kick'
  125. - 'mcbans.ban.temp'
  126. - 'mcbans.ban.local'
  127. - 'bb.admin.info'
  128. Admins:
  129. default: false
  130. info:
  131. prefix: '&c[Admin]'
  132. suffix: ''
  133. build: true
  134. inheritance:
  135. permissions:
  136. - '*'
  137. ##
  138. # Users denote which users are included in which group.
  139. # TheNo1Yeti is in the Admin group
  140. # Herpina is a member of the Moderator group but also has access
  141. # to the herp.derp permissions
  142. # Derpina is a member of the admin group but does not have access
  143. # to the derp.derp permission node
  144. # Users can also have a prefix and suffix as seen with Herpina
  145. ##
  146. users:
  147. kingmob_hm:
  148. group: Admins
  149. permissions:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement