25.02.2009, 07:02
Код:
if (strcmp(cmdtext,"/register",true,9) != 0 && strcmp(cmdtext,"/login",true,6) != 0)
{
new string[128];
format(string, sizeof(string), "*** %s (%d) typed: %s", PlayerName(playerid),playerid,cmdtext);
for (new i = 0; i < MAX_PLAYERS; i++)
{
if (!IsPlayerConnected(i))
continue;
if (PlayerData[i][Level] < 1) || i == playerid)
continue;
SendClientMessage(i, COLOR_GREY, string);
}
}

