mirror of
https://github.com/shavitush/bhoptimer.git
synced 2025-12-16 04:07:18 +00:00
* Removed Chat-Processor dependency. * Added cvar `shavit_chat_colon`. * Fixed inconsistencies with default chat messages.
47 lines
2.0 KiB
INI
47 lines
2.0 KiB
INI
// These are the chat messages for the bhoptimer implementation of a chat processor.
|
|
// Notes:
|
|
// In CS:S and TF2, the colon uses the default chat color.
|
|
// In CS:GO, the colon uses the same color the player name uses.
|
|
"Chat Messages"
|
|
{
|
|
"CS:S"
|
|
{
|
|
"Cstrike_Chat_CT_Loc" "(Counter-Terrorist) {name} {def}{colon} {msg}"
|
|
"Cstrike_Chat_CT" "(Counter-Terrorist) {name} {def}{colon} {msg}"
|
|
"Cstrike_Chat_T_Loc" "(Terrorist) {name} {def}{colon} {msg}"
|
|
"Cstrike_Chat_T" "(Terrorist) {name} {def}{colon} {msg}"
|
|
"Cstrike_Chat_CT_Dead" "*DEAD*(Counter-Terrorist) {name} {def}{colon} {msg}"
|
|
"Cstrike_Chat_T_Dead" "*DEAD*(Terrorist) {name} {def}{colon} {msg}"
|
|
"Cstrike_Chat_Spec" "(Spectator) {name} {def}{colon} {msg}"
|
|
"Cstrike_Chat_All" "{name} {def}{colon} {msg}"
|
|
"Cstrike_Chat_AllDead" "*DEAD* {name} {def}{colon} {msg}"
|
|
"Cstrike_Chat_AllSpec" "*SPEC* {name} {def}{colon} {msg}"
|
|
}
|
|
|
|
"CS:GO"
|
|
{
|
|
"Cstrike_Chat_CT_Loc" "(Counter-Terrorist) {name} {colon} {msg}"
|
|
"Cstrike_Chat_CT" "(Counter-Terrorist) {name} {colon} {msg}"
|
|
"Cstrike_Chat_T_Loc" "(Terrorist) {name} {colon} {msg}"
|
|
"Cstrike_Chat_T" "(Terrorist) {name} {colon} {msg}"
|
|
"Cstrike_Chat_CT_Dead" "*DEAD*(Counter-Terrorist) {name} {colon} {msg}"
|
|
"Cstrike_Chat_T_Dead" "*DEAD*(Terrorist) {name} {colon} {msg}"
|
|
"Cstrike_Chat_Spec" "(Spectator) {name} {colon} {msg}"
|
|
"Cstrike_Chat_All" "{name} {colon} {msg}"
|
|
"Cstrike_Chat_AllDead" "*DEAD* {name} {colon} {msg}"
|
|
"Cstrike_Chat_AllSpec" "*SPEC* {name} {colon} {msg}"
|
|
}
|
|
|
|
"TF2"
|
|
{
|
|
"TF_Chat_Team_Loc" "(TEAM) {name} {def}{colon} {msg}"
|
|
"TF_Chat_Team" "(TEAM) {name} {def}{colon} {msg}"
|
|
"TF_Chat_Team_Dead" "*DEAD*(TEAM) {name} {def}{colon} {msg}"
|
|
"TF_Chat_Spec" "(Spectator) {name} {def}{colon} {msg}"
|
|
"TF_Chat_All" "{name} {def}{colon} {msg}"
|
|
"TF_Chat_AllDead" "*DEAD* {name} {def}{colon} {msg}"
|
|
"TF_Chat_AllSpec" "*SPEC* {name} {def}{colon} {msg}"
|
|
"TF_Chat_Coach" "(Coach) {name} {def}{colon} {msg}"
|
|
}
|
|
}
|