23.06.2011, 20:18
I wanna read all the lines, but this just read the first line
pawn Код:
if (strcmp(cmd, "/read", true) == 0)
{
new File:example = fopen("procurados.txt", io_read);
fread(example, string);
fclose(example); //
printf("%s",string);
SendClientMessage(playerid, -1, string);
return 0x01;
}