Sorry for double post,I forgot to ask for another question:
This is stock of color chat.
PHP Code:
client_printcolor(id, " /ctr xx: %i" , PlayerXXX[id])
stock client_printcolor(const id, const input[], any:...)
{
new msg[191], players[32], count = 1;
vformat(msg,190,input,3);
replace_all(msg,190,"/g","^4");// green txt
replace_all(msg,190,"/y","^1");// orange txt
replace_all(msg,190,"/ctr","^3");// team txt
replace_all(msg,190,"/w","^2");// white txt
if (id) players[0] = id; else get_players(players,count,"ch");
for (new i=0;i<count;i++)
if (is_user_connected(players[i]))
{
message_begin(MSG_ONE_UNRELIABLE, SayTxT, _, players[i]);
write_byte(players[i]);
write_string(msg);
message_end();
}
}
When in client_colorprint is %i and PlayerXXX[id],then colors won't be shown,whats the problem?