Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 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. // { <--
  8.  
  9. Add all groups/steamids after first bracket (Leave this alone)
  10. //
  11. // "STEAM_0:1:1234567" <-- Here is a steamid example with a tag (don't duplicate
  12.  
  13. steamids)
  14. // {
  15. // "namecolor" "#RRGGBB" <-- This is the color for the name
  16.  
  17. (#RRGGBB in hex notation or #RRGGBBAA with alpha)
  18. // "textcolor" "#RRGGBBAA" <-- This is the color of the text
  19. // }
  20. //
  21. // "groupname" <-- This can either be a
  22.  
  23. steamid for a specific player, or a group name
  24. // { <--
  25.  
  26. Open the group
  27. // "flag" "z" <-- This is the flag(s)
  28.  
  29. assoicated with the group. This field doesn't matter if the group name is a steamid
  30. // "tag" "[admin]" <-- This is the text for the tag
  31. // "tagcolor" "O" <-- This is the color for the tag
  32. // "namecolor" "G" <-- This is the color for the name
  33. // "textcolor" "T" <-- This is the color of the text
  34. // } <--
  35.  
  36. Close the group
  37. // } <--
  38.  
  39. Add all groups/steamids before last bracket (Leave this alone)
  40. //
  41. // NOTE:
  42. // If you don't enter a steamid then the group name does not matter, it's just for your reference.
  43. //
  44. // For colors, either a hex notation of a color (#RRGGBB or #RRGGBBAA) or one of the supported shortcuts (O - Olive, G - Green, T - Team)
  45.  
  46. is required
  47. //
  48. // --------ORDER OF OPERATIONS--------
  49. //
  50. // The order in which you place items in the config file matters. Here is what determins what color they get:
  51. // 1. SteamID
  52. // If there is a steamid present, it will always override everything. If you put a steamid in twice
  53. // then the first entry (top to bottom) will be used. (I think, just don't do it!)
  54. // 2. Groups
  55. // The plugin will search (top to bottom) for a postitive match for the flag string. The player' flags
  56. // will be compared with the group flag character (NOTE: only one flag per group! "a" is okay, "ab" is NOT),
  57. // and if the player has the flag, it will stop there.
  58. // For example. Admins with the "ad" flags and donators with the "a" flag. If you place the "a" flag group
  59. // above the "d" group then the admin will get the "a" colors. Order matters.
  60. //
  61. // ---------DO NOT EDIT ABOVE THIS LINE---------
  62. "admin_colors"
  63. {
  64. "STEAM_0:0:49280040"
  65. {
  66. "flag" "z"
  67. "tag" "[Owner] "
  68. "tagcolor" "G"
  69. "namecolor" "T"
  70. "textcolor" "O"
  71. }
  72. }
  73. "VIP"
  74. {
  75. "flag" "a"
  76. "tag" "[VIP] "
  77. "tagcolor" "#9EC34FAA"
  78. "namecolor" "#00CCFF"
  79. "textcolor" "#000000AA"
  80. }
  81. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement