30.06.2011, 19:20
PHP код:
if(!strcmp("/guardioes", cmdtext, true))
{
new count = 0;
SendClientMessage(playerid, -1, "Guardiхes Online:");
for(new i = 0; i < MAX_PLAYERS; ++i) {
if(Guardioes[i] > 0) {
new string[0x3C],Nome[MAX_PLAYER_NAME];
GetPlayerName(i, Nome, sizeof(Nome) );
format(string, sizeof(string), "Guardiгo: %s", Nome);
SendClientMessage(playerid, -1, string);
count++;
}
}
if(count == 0) return SendClientMessage(playerid, -1, "Nenhum guardiгo online");
return true;
}