16.02.2010, 23:38
Pawno Code
Code:
if(strcmp(cmdtext, "/admins", true) == 0){ new Jogador[24]; new count = 0; new msg[120]; for(new i=0; i<MAX_PLAYERS; i++){ if(IsPlayerConnected(i) && IsPlayerAdmin(i)){ GetPlayerName(i,Jogador,24); format(msg,sizeof(msg),"Admins Online: %s", Jogador); SendClientMessage(playerid, 0x000FFFAA, msg); count++; } } if(count == 0){ SendClientMessage(playerid, COR_VERMELHO, "Nгo tem nenhum adm online agora!"); } return 1; }