Guest User

Untitled

a guest
May 25th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. # Group inheritance
  2. # any inherited groups prefixed with a g: are global groups
  3. # These groups are defined in the globalgroups.yml
  4. # and can be inherited in any worlds groups/users.yml.
  5. #
  6. # Groups without the g: prefix are groups local to this world
  7. # and defined in the this groups.yml file.
  8.  
  9. groups:
  10. Default:
  11. default: true
  12. permissions:
  13. - -bukkit.command.kill
  14. inheritance:
  15. - g:essentials_default
  16. - g:bukkit_default
  17. info:
  18. prefix: '&e'
  19. build: false
  20. suffix: ''
  21. Builder:
  22. default: false
  23. permissions: []
  24. inheritance:
  25. - default
  26. - g:essentials_builder
  27. info:
  28. prefix: '&2[Builder] '
  29. build: true
  30. suffix: ''
  31. VIP:
  32. default: false
  33. permissions: [essentials.time, essentials.time.set, essentials.weather, essentials.jump]
  34. inheritance:
  35. - default
  36. - g:essentials_builder
  37. info:
  38. prefix: '&3[VIP] '
  39. build: true
  40. suffix: ''
  41. Moderator:
  42. default: false
  43. permissions: []
  44. inheritance:
  45. - builder
  46. - VIP
  47. - g:essentials_moderator
  48. - g:bukkit_moderator
  49. info:
  50. prefix: '&5[Mod] '
  51. build: true
  52. suffix: ''
  53. Admin:
  54. default: false
  55. permissions: []
  56. inheritance:
  57. - moderator
  58. - VIP
  59. - g:essentials_admin
  60. - g:bukkit_admin
  61. info:
  62. prefix: '&c[Admin] '
  63. build: true
  64. suffix: ''
  65. Owner:
  66. default: false
  67. permissions:
  68. - '*'
  69. inheritance:
  70. - admin
  71. - VIP
  72. info:
  73. prefix: '&6[&4O&6W&4N&6E&4R&6] '
  74. build: true
  75. suffix: ''
Add Comment
Please, Sign In to add comment