15.08.2015, 03:57
Guys I wanted to read the banned folder, and then show me, but when I type the command the server closes on time if anyone knows WHAT could be happening please help me.
PHP код:
//Comando para exibir a lista de banidos.
CMD:banidos(playerid, params[]){
Ler("Players_Banidos", playerid); printf("lendo banidos");
return 1;
}
PHP код:
//Stock que faz a leitura
stock Ler(name[], playerid)
{
new nomes[255];
new File:archive;
archive = fopen(name, io_read);
while(fread(archive, nomes))
SendClientMessage(playerid, 0xFFFFFFFF, nomes);
fclose(archive);
}