11.01.2010, 19:36
pawn 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){
SendClientMessageEx(playerid, COR_VERMELHO, "Nгo tem nenhum adm online agora!","Now, any adm is on");
}
return 1;
}