Advertisement
Guest User

customchatcolor.cfg

a guest
May 19th, 2016
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.62 KB | None | 0 0
  1. // Custom Chat Colors is written by Dr. McKay (http://www.doctormckay.com)
  2. // Simple Chat Colors (Redux) is written by Antithasys
  3. // The configuration is very similar, so I've stolen Redux's documentation :P
  4. //
  5. // How to edit this file:
  6. // "admin_colors" <-- Leave this alone
  7. // { <-- Add all groups/steamids after first bracket (Leave this alone)
  8. //
  9. // "STEAM_0:1:1234567" <-- Here is a steamid example with a tag (don't duplicate steamids)
  10. // {
  11. // "namecolor" "#RRGGBB" <-- This is the color for the name (#RRGGBB in hex notation or #RRGGBBAA with alpha)
  12. // "textcolor" "#RRGGBBAA" <-- This is the color of the text
  13. // }
  14. //
  15. // "groupname" <-- This can either be a steamid for a specific player, or a group name
  16. // { <-- Open the group
  17. // "flag" "z" <-- This is the flag(s) assoicated with the group. This field doesn't matter if the group name is a steamid
  18. // "tag" "[admin]" <-- This is the text for the tag
  19. // "tagcolor" "O" <-- This is the color for the tag
  20. // "namecolor" "G" <-- This is the color for the name
  21. // "textcolor" "T" <-- This is the color of the text
  22. // } <-- Close the group
  23. // } <-- Add all groups/steamids before last bracket (Leave this alone)
  24. //
  25. // NOTE:
  26. // If you don't enter a steamid then the group name does not matter, it's just for your reference.
  27. //
  28. // For colors, either a hex notation of a color (#RRGGBB or #RRGGBBAA) or one of the supported shortcuts (O - Olive, G - Green, T - Team) is required
  29. //
  30. // --------ORDER OF OPERATIONS--------
  31. //
  32. // The order in which you place items in the config file matters. Here is what determins what color they get:
  33. // 1. SteamID
  34. // If there is a steamid present, it will always override everything. If you put a steamid in twice
  35. // then the first entry (top to bottom) will be used. (I think, just don't do it!)
  36. // 2. Groups
  37. // The plugin will search (top to bottom) for a postitive match for the flag string. The player' flags
  38. // will be compared with the group flag character (NOTE: only one flag per group! "a" is okay, "ab" is NOT),
  39. // and if the player has the flag, it will stop there.
  40. // For example. Admins with the "ad" flags and donators with the "a" flag. If you place the "a" flag group
  41. // above the "d" group then the admin will get the "a" colors. Order matters.
  42. //
  43. // ---------DO NOT EDIT ABOVE THIS LINE---------
  44. "admin_colors"
  45. {
  46. "Owner"
  47. {
  48. "flag" "z"
  49. "tag" "[Owner]"
  50. "tagcolor" "{10}"
  51. "textcolor" "{0E}"
  52. }
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement