08.09.2010, 05:10
pawn Код:
LineCount(filepath[])
{
new idx = 0;
if(fexist(filepath))
{
new File:Handler, string[1028];
Handler = fopen(filepath, io_read);
while(fread(Handler, string)){idx++;}
fclose(Handler);
}
return idx;
}
pawn Код:
printf("There are currently %d players banned.",LineCount("List.ban"));