Advertisement
AlexNacho

Essentials Perms

Aug 20th, 2013
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.05 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: '&f[{GROUP}&f] {DISPLAYNAME}&f:&f {MESSAGE}'
  23.  
  24.  group-formats:
  25.    Player: '&f[&7{GROUP}&f] {DISPLAYNAME}&f:&f {MESSAGE}'
  26.    Member: '&f[&2{GROUP}&f] {DISPLAYNAME}&f:&f {MESSAGE}'
  27.    Builder: '&f[&3{GROUP}&f] {DISPLAYNAME}&f:&f {MESSAGE}'
  28.    Moderator: '&2[&2{GROUP}&f] {DISPLAYNAME}&2:&2 {MESSAGE}'
  29.    Admin: '&a[&5{GROUP}&c] {DISPLAYNAME}&5:&5 {MESSAGE}'
  30.    Owner: '&b[&b{GROUP}&g] {DISPLAYNAME}&b:&b {MESSAGE}'
  31.    Mod: '&f[&e{GROUP}&f] {DISPLAYNAME}&f:&f {MESSAGE}'
  32.    Co-Owner: '&f[&b{GROUP}&f] {DISPLAYNAME}&f:&f {MESSAGE}'
  33.    Manager: '&f[&c{GROUP}&f] {DISPLAYNAME}&f:&f {MESSAGE}'
  34.    default: '&f[&b{GROUP}&f] {DISPLAYNAME}&f:&f {MESSAGE}'
  35.  
  36.  # If you are using group formats make sure to remove the '#' to allow the setting to be read.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement