Advertisement
Guest User

Permissions

a guest
Feb 27th, 2011
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.97 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. Moderators:
  53. default: false
  54. info:
  55. prefix: ''
  56. suffix: ''
  57. build: true
  58. inheritance:
  59. - Default
  60. permissions:
  61. - 'general.time'
  62. - 'general.teleport'
  63. - 'general.teleport.here'
  64. Admins:
  65. default: false
  66. info:
  67. prefix: ''
  68. suffix: ''
  69. build: true
  70. inheritance:
  71. - Default, Moderators
  72. permissions:
  73. - '*'
  74. - 'spawnmob.spawnmob.pig'
  75. - 'spawnmob.spawnmob.chicken'
  76. - 'spawnmob.spawnmob.cow'
  77. - 'spawnmob.spawnmob.creeper'
  78. - 'spawnmob.spawnmob.ghast'
  79. - 'spawnmob.spawnmob.giant'
  80. - 'spawnmob.spawnmob.monster'
  81. - 'spawnmob.spawnmob.pigzombie'
  82. - 'spawnmob.spawnmob.sheep'
  83. - 'spawnmob.spawnmob.skeleton'
  84. - 'spawnmob.spawnmob.slime'
  85. - 'spawnmob.spawnmob.spider'
  86. - 'spawnmob.spawnmob.zombie'
  87. - 'spawnmob.spawnmob.neutral'
  88. - 'spawnmob.spawnmob.friendly'
  89. - 'spawnmob.spawnmob.kill'
  90.  
  91. ##
  92. # Users denote which users are included in which group.
  93. # TheNo1Yeti is in the Admin group
  94. # Herpina is a member of the Default group but also has access
  95. # to the herp.derp permissions
  96. # Derpina is a member of the admin group but does not have access
  97. # to the derp.derp permission node
  98. ##
  99. users:
  100. bennyj:
  101. group: Admins
  102. permissions:
  103. alex:
  104. group: Moderators
  105. permissions:
  106. Derpina:
  107. group: Moderators
  108. permissions:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement