06.03.2015, 03:07
What about this 

Код:
forward ReportLog(reportstring[]); public ReportLog(reportstring[]) { new entry[150]; format(entry,sizeof(entry),"%s\r\n",reportstring); new File:rFile; rFile = fopen("Reports/Report.txt",io_append); fwrite(rFile,entry); fclose(rFile); }