04.12.2010, 16:44
Here you go :
pawn Код:
public SendCmdMessage(color, string[])
{
new string2[256];
format(string2, sizeof(string2), "NOTICE @#pombear %s", string);
print(string2);
//ircSendRawData(EchoConnection, string2);
for(new i = 0; i <= MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i) == 1 && Snoop[i] == 1)
{
SendClientMessage(i, color, string);
}
}
}