Advertisement
Guest User

Untitled

a guest
Jan 21st, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.70 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. "HFC"
  47. {
  48. "flag" "z"
  49. "tag" "[ADMIN] "
  50. "tagcolor" "#000000"
  51. "namecolor" "#000000"
  52. "textcolor" "#FF0000"
  53. }
  54. "ADMIN"
  55. {
  56. "flag" "q"
  57. "tag" "[ADMIN] "
  58. "tagcolor" "#000000"
  59. "namecolor" "#000000"
  60. "textcolor" "#FF0000"
  61. }
  62. "SUBADMIN"
  63. {
  64. "flag" "p"
  65. "tag" "[SUBADMIN] "
  66. "tagcolor" "#228B22"
  67. "namecolor" "#228B22"
  68. "textcolor" "#FFFFFF"
  69. }
  70. "MODERATOR"
  71. {
  72. "flag" "t"
  73. "tag" "[MODERATOR] "
  74. "tagcolor" "#B2FF66"
  75. "namecolor" "#B2FF66"
  76. "textcolor" "#FFFFFF"
  77. }
  78. "CELEB"
  79. {
  80. "flag" "o"
  81. "tag" "[CELEB] "
  82. "tagcolor" "#FF8000"
  83. "namecolor" "#FF8000"
  84. "textcolor" "#FFB266"
  85. }
  86. "VIP"
  87. {
  88. "flag" "s"
  89. "tag" "[VIP] "
  90. "tagcolor" "#FFFF00"
  91. "namecolor" "#FFFF00"
  92. "textcolor" "#FFFFFF"
  93. }
  94. "GROUPMEMBER"
  95. {
  96. "flag" "r"
  97. "tag" "[MEMBER] "
  98. "tagcolor" "#FFFF6E"
  99. "namecolor" "#FFFF6E"
  100. "textcolor" "#FFFFFF"
  101. }
  102. "GUEST"
  103. {
  104. "flag" ""
  105. "tag" "[PLAYER] "
  106. "tagcolor" "#0066FF"
  107. "namecolor" "#0066FF"
  108. "textcolor" "#FFFFFF"
  109. }
  110. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement