Se for com nъmeros faзa assim.
Se for letras/nomes, vocк vai ser complicado e nгo vai compensar a gambiarra, enfim, se for letras/nomes,
aconselho usar mysql.
PHP Code:
CMD:verkeys(playerid){
new file[64], // vai armazena a conta, nгo me lembro se й preciso de td isso qualquer coisa diminua.
string_2[24+15], // armazena o nome e o int
string_3[900], // vai juntar todas contas atй o 100, precisa aumentar ou diminuir se for preciso.
count
;
for(new i = 0; i < 100; i++){
format(file, sizeof(file), CONTAS, i);
if(DOF2::FileExists(string)){
format(string_2, sizeof(string_2), "%d [%s]\n", i, DOF2::GetString(file, "Nome"));
strcat(string_3, string_2);
count++; // vai ser incrementado caso exista.
}
}
printf("%d", strlen(string_3)); // se der 899 й pq nгo cabem mais e precisa aumentar...
if(!count){
return SendClientMessage(playerid, -1, "Nenhuma Key foi encontrada!");
}else{
ShowPlayerDialog(playerid, DIALOGNORESPONSE, DIALOG_STYLE_MSGBOX, "Keys existentes", string_3, "Ok", "");
}
return 1;
}