Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. # Group inheritance
  2. #
  3. # Any inherited groups prefixed with a g: are global groups
  4. # and are inherited from the GlobalGroups.yml.
  5. #
  6. # Groups without the g: prefix are groups local to this world
  7. # and are defined in the this groups.yml file.
  8. #
  9. # Local group inheritances define your promotion tree when using 'manpromote/mandemote'
  10.  
  11. groups:
  12. Citoyen:
  13. default: true
  14. permissions:
  15. - essentials.home
  16. - essentials.sethome
  17. - essentials.delhome
  18. inheritance:
  19. info:
  20. build: false
  21. prefix: '&7[Citoyen] '
  22. suffix: ''
  23. Architecte:
  24. default: false
  25. permissions:
  26. - essentials.vanish
  27. - bukkit.command.PluginCommand.execute
  28. inheritance:
  29. - citoyen
  30. info:
  31. build: true
  32. prefix: '&b[Architecte] '
  33. suffix: ''
  34. Moderateur:
  35. default: false
  36. permissions:
  37. - essentials.kill
  38. - esseentials.spawnmob
  39. inheritance:
  40. - architecte
  41. info:
  42. build: true
  43. prefix: '&e[Modérateur] '
  44. suffix: ''
  45. Administrateur:
  46. default: false
  47. permissions:
  48. - essentials.speed
  49. - essentials.fly
  50. inheritance:
  51. - moderateur
  52. info:
  53. build: true
  54. prefix: '&c[Administrateur] '
  55. suffix: ''
  56. Fondateur:
  57. default: false
  58. permissions:
  59. - '*'
  60. inheritance:
  61. - administrateur
  62. info:
  63. build: true
  64. prefix: '&f[Fondateur] '
  65. suffix: ''
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement