28.10.2018, 12:54
pawn Код:
new File:rflh = fopen("reports.txt", io_read);
if(rflh)
{
new lines, id, str[256];
while(fread(rflh, str))
{
lines++;
}
id = lines - 10;
lines = 0;
fseek(rflh);
while(fread(rflh, str))
{
if(++lines <= id) continue;
SendClientMessage(playerid, -1, str);
}
fclose(rflh);
}