27/11/2021 00:36
(Esta mensagem foi modificada pela última vez a: 27/11/2021 00:36 por AztecaJr.)
um exemplo do que o amigo acima falou:
Código PHP:
CMD:procurados(playerid)
{
for (new i; i < MAX_PLAYERS; i++)
{
if(estrelas[i] >=6)
{
new string[5000], nome[MAX_PLAYER_NAME+1];
GetPlayerName(i,sizeof(nome), nome);
format(string,5000,"%s Estrelas: %i",nome[i], estrelas[i]);
}
ShowPlayerDialog(playerid, ID_DA_DIALOG, "Players Procurados", string, "OK", "SAIR" );
}
return 1;
}