how would i make the words in a code colored when they are printed on the screen for example the client chat in this code
PHP Code:
else
{
new Float:frags, iTeam = get_pcvar_num(Pcvar_Team_Only)
for(new id = 1; id <= g_maxClients; id++)
{
if(is_user_alive(id) && !g_bKilled[id])
{
if(iTeam && get_user_team(id) != iTeam)
continue
pev(id, pev_frags, frags)
set_pev(id, pev_frags, ++frags)
client_print(id, print_chat, "You survived the round and earned a frag")
}
}
}