Advertisement
Guest User

Untitled

a guest
Jul 29th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.72 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. - 'essentials.signs.free.use'
  52. - 'essentials.portal'
  53. - 'essentials.msg'
  54. - 'essentials.afk'
  55. - 'essentials.rules'
  56. - 'essentials.motd'
  57. - 'essentials.mail.send'
  58. - 'essentials.helpop'
  59. - 'essentials.help'
  60. - 'essentials.whois'
  61. - 'essentials.worth'
  62. - 'essentials.sell'
  63. - 'essentials.balance'
  64. - 'essentials.pay'
  65. - 'essentials.signs.buy.use'
  66. - 'essentials.signs.trade.*'
  67. - 'essentials.signs.sell.use'
  68. - 'essentials.tpaccept'
  69. - 'essentials.tpdeny'
  70. - 'essentials.home'
  71. - 'essentials.sethome'
  72. - 'essentials.spawn'
  73. - 'essentials.warp'
  74. - 'essentials.chat.shout'
  75. Admins:
  76. default: false
  77. info:
  78. prefix: ''
  79. suffix: ''
  80. build: true
  81. inheritance:
  82. - Default
  83. permissions:
  84. - '*'
  85.  
  86. ##
  87. # Users denote which users are included in which group.
  88. # TheNo1Yeti is in the Admin group
  89. # Herpina is a member of the Default group but also has access
  90. # to the herp.derp permissions
  91. # Derpina is a member of the admin group but does not have access
  92. # to the derp.derp permission node
  93. ##
  94. users:
  95. eamondo2:
  96. group: Admins
  97. permissions:
  98. - '*'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement