bhoptimer/addons/sourcemod/configs/shavit-messages.cfg
shavit cfde142e92 Added TF2 support. (#549)
Tested most of the things in-game, should be good to go!
2017-12-10 09:30:08 +02:00

37 lines
1.0 KiB
INI

// Configuration file for chat messages.
// The settings here will replace the behavior of chat messages that the plugin sends.
//
// Universal color settings -- will work with both CS:S and CS:GO:
// {default} - default color
// {green} - green color
//
// For CS:S, you have the following variables available: (NOTE: The format for colors is like HTML. RRGGBBAA)
// {RGB} - like \x07, usage: "{RGB}FF0000" for red
// {RGBA} - like \x08, usage: "{RGBA}FF0000FE" for 254 alpha red
//
// CS:GO colors:
// {blue}, {bluegrey}, {darkblue}, {darkred}, {gold}, {grey}, {grey2}, {lightgreen}, {lightred}, {lime}, {orchid}, {yellow}
//
"Messages"
{
"CS:S" // TF2 is pulled from this too, because both have the same chat capabilities!
{
"prefix" "{RGB}5e70d0[Timer]"
"text" "{RGB}ffffff"
"warning" "{RGB}af2a22"
"variable" "{RGB}7fd772"
"variable2" "{RGB}276f5c"
"style" "{RGB}db88c2"
}
"CS:GO"
{
"prefix" "{green}[Timer]"
"text" "{default}"
"warning" "{darkred}"
"variable" "{bluegrey}"
"variable2" "{orchid}"
"style" "{gold}"
}
}