Advertisement
Guest User

Untitled

a guest
Aug 25th, 2013
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 KB | None | 0 0
  1. ############################################################
  2. # +------------------------------------------------------+ #
  3. # | EssentialsChat | #
  4. # +------------------------------------------------------+ #
  5. ############################################################
  6.  
  7. chat:
  8.  
  9. # If EssentialsChat is installed, this will define how far a player's voice travels, in blocks. Set to 0 to make all chat global.
  10. # Note that users with the "essentials.chat.spy" permission will hear everything, regardless of this setting.
  11. # Users with essentials.chat.shout can override this by prefixing text with an exclamation mark (!)
  12. # Users with essentials.chat.question can override this by prefixing text with a question mark (?)
  13. # You can add command costs for shout/question by adding chat-shout and chat-question to the command costs section."
  14. radius: 0
  15.  
  16. # Chat formatting can be done in two ways, you can either define a standard format for all chat.
  17. # Or you can give a group specific chat format, to give some extra variation.
  18. # If set to the default chat format which "should" be compatible with ichat.
  19. # For more information of chat formatting, check out the wiki: http://wiki.ess3.net/wiki/Chat_Formatting
  20.  
  21. #format: '{DISPLAYNAME}:& {MESSAGE}'
  22. #format: '&7[{GROUP}]&r {DISPLAYNAME}&7:&r {MESSAGE}'
  23.  
  24. group-formats:
  25. Citizen: '&8(&a{GROUP}&8)*&a{DISPLAYNAME}&8:&f {MESSAGE}'
  26. # Helper: '&8(&
  27. # Default: '{WORLDNAME} {DISPLAYNAME}&7:&r {MESSAGE}'
  28. # Admins: '{WORLDNAME} &c[{GROUP}]&r {DISPLAYNAME}&7:&c {MESSAGE}'
  29.  
  30. # If you are using group formats make sure to remove the '#' to allow the setting to be read.
  31. --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  32.  
  33. groups:
  34. Citizen:
  35. default: false
  36. info:
  37. prefix: ''
  38. suffix: ''
  39. build: true
  40. inheritance:
  41. - ''
  42. permissions: []
  43. VIP:
  44. default: false
  45. info:
  46. prefix: ''
  47. suffix: ''
  48. build: true
  49. inheritance:
  50. - 'Helper'
  51. permissions: []
  52. Helper:
  53. default: false
  54. info:
  55. prefix: ''
  56. suffix: ''
  57. build: true
  58. inheritance:
  59. - 'Citizen'
  60. permissions: []
  61. VIP+:
  62. default: false
  63. info:
  64. prefix: ''
  65. suffix: ''
  66. build: true
  67. inheritance:
  68. - 'VIP'
  69. permissions: []
  70. Hero:
  71. default: false
  72. info:
  73. prefix: ''
  74. suffix: ''
  75. build: true
  76. inheritance:
  77. - 'Heroine'
  78. permissions: []
  79. Heroine:
  80. default: false
  81. info:
  82. prefix: ''
  83. suffix: ''
  84. build: true
  85. inheritance:
  86. - 'VIP+'
  87. permissions: []
  88. Architect:
  89. default: false
  90. info:
  91. prefix: ''
  92. suffix: ''
  93. build: true
  94. inheritance:
  95. - 'Hero'
  96. permissions: []
  97. Demi-God:
  98. default: false
  99. info:
  100. prefix: ''
  101. suffix: ''
  102. build: true
  103. inheritance:
  104. - 'Architect'
  105. permissions: []
  106. GOD:
  107. default: false
  108. info:
  109. prefix: ''
  110. suffix: ''
  111. build: true
  112. inheritance:
  113. - 'Demi-God'
  114. permissions:
  115. - '*'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement