I would suggest, that the folder "admini" doesn't exist.
You should write it like this:
PHP код:
CMD:adminlist(playerid)
{
const MAX_ADMINS = 20;
new tmp[32],string[MAX_PLAYER_NAME*MAX_ADMINS];
for(new i,File:f; i < MAX_ADMINS; i++)
{
format(tmp,sizeof(tmp),"admini/%d.txt",i);
if(!fexist(tmp)) continue;
f = fopen(tmp,io_read),fread(f,tmp),fclose(f),
strcat(string,tmp),strcat(string,"\n");
}
return 1;
}
But actually it would be smarter...to write it all in one file, or use a database like MySQL or SQLite
