Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.91 KB | None | 0 0
  1. # Those under here doesn't matter on GroupManager... Permissions 2.0 had it.
  2. plugin:
  3. permissions:
  4. system: default
  5.  
  6. ##
  7. # Groups can contain inheritance.
  8. # To make a group inherit the permissions from another
  9. # group simply place the groups name in the "inheritance:"
  10. # field seperated by commas.
  11. #
  12. # Example: inheritance: Default,Admins,
  13. ##
  14. # All permissions including the asterisks must be placed in single quotes.
  15. # like so:
  16. #
  17. # - 'essentials.spawn'
  18. #
  19. # Otherwise errors will happen!
  20. ##
  21. # Globalized Permission settings:
  22. #
  23. # If a permission contains periods (.) you can denote a globalized parameter:
  24. #
  25. # - 'essentials.*'
  26. #
  27. # This will allow you to use all general commands.
  28. #
  29. ##
  30. #
  31. # Single Asterisk denotes all commands:
  32. #
  33. # - '*'
  34. ##
  35. groups:
  36. Default:
  37. default: true
  38. info:
  39. prefix:
  40. suffix:
  41. build: true
  42. inheritance:
  43. permissions:
  44. - 'essentials.spawn'
  45. - 'essentials.motd'
  46. - 'essentials.help'
  47. - 'essentials.home'
  48. - 'essentials.sethome'
  49. Moderator:
  50. default: false
  51. info:
  52. prefix:
  53. suffix:
  54. build: true
  55. inheritance:
  56. - Default
  57. permissions:
  58. - 'essentials.tp'
  59. - 'essentials.tphere'
  60. - 'essentials.item'
  61. - 'essentials.give'
  62. Admins:
  63. default: false
  64. info:
  65. prefix:
  66. suffix:
  67. build: true
  68. inheritance:
  69. - Moderator
  70. permissions:
  71. - '*'
  72.  
  73. ##
  74. # DarkGrave has control over all commands.
  75. # sk89q can use /spawn & /time
  76. ##
  77. users:
  78. darkgrave:
  79. group: Admins
  80. permissions:
  81. sk89q:
  82. group: Default
  83. permissions:
  84. - 'essentials.god'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement