So I have this in my code:
PHP Code:
#define DEAD_TEXT "*DEAD*"
ColorChat(id, RED, "^x03(Terrorist) %s : %s" , Name, szMsg);
ColorChat(id, RED, "^x03%s(Terrorist) %s : %s", DEAD_TEXT, Name, szMsg);
ColorChat(0, RED, "^x03%s %s : %s", DEAD_TEXT, Name, szMsg);
Basically whole chat of the admins are replaced, but how can I support Multilang, so not in all languages it is Dead or Terrorist or whatever. I saw this and wanted to know if this is possible todo and how?
"Cstrike_Chat_CT" "(Counter-Terrorist) %s1 : %s2"
"Cstrike_Chat_T" "(Terrorist) %s1 : %s2"
"Cstrike_Chat_CT_Dead" "*DEAD*(Counter-Terrorist) %s1 : %s2"
"Cstrike_Chat_T_Dead" "*DEAD*(Terrorist) %s1 : %s2"
"Cstrike_Chat_Spec" "(Spectator) %s1 : %s2"
"Cstrike_Chat_All" "%s1 : %s2"
"Cstrike_Chat_AllDead" "*DEAD* %s1 : %s2"
"Cstrike_Chat_AllSpec" "*SPEC* %s1 : %s2"