14.03.2013, 00:30
Add this
replace
to
and uncomment formats
pawn Код:
stock MessageToAllAdmins(const msg[],color = -1)
{
for(new i; i != MAX_PLAYERS; i++)
if(IsPlayerConnected(i) && (Account[i][pAdmin] >= 1 || IsPlayerAdmin(i)))
SendClientMessage(i,color,msg);
return;
}
pawn Код:
SendClientMessageToAll(COLOR_YELLOW, string);
pawn Код:
MessageToAllAdmins(string,COLOR_YELLOW);