If you put "TEAM_COLOR" will show the message color based on player team that read the message, so to T team will show RED and CT team BLUE. You must make something like
PHP Code:
switch(get_user_team(id))
{
case 1: //T leave
{
ColorChat(0, RED, "^3%s (%s) has left!", name, ip);
}
case 2: //CT leave
{
ColorChat(0, BLUE, "^3%s (%s) has left!", name, ip);
}
}
This is just an example and maybe you must modify it according to your defines / native.
__________________