08.01.2011, 07:58
I have two colors in my MessageToAdmins, one of them is grey for leave/join messages, others is for admin stuff, like admin chat.. but everytime someone disconnects and an admin use a cmd
it always says it in two colors
here is the code
and dont delete one of the colors i need them both .. please help
it always says it in two colors
here is the code
pawn Код:
public MessageToAdmins(color, const string[])
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(PlayerInfo[i][pAdminLevel] >=1)
{
SendClientMessage(i, AdminColor, string);
SendClientMessage(i, Grey, string);
}
}
return 1;
}