14.05.2014, 23:28
On line 167:
error 001: expected token: ";", but found "-identifier-"
error 017: undefined symbol "filepath"
warning 215: expression has no effect
error 001: expected token: ";", but found "]"
fatal error 107: too many error messages on one line
Line 167:
Heres the whole thing with your changes:
error 001: expected token: ";", but found "-identifier-"
error 017: undefined symbol "filepath"
warning 215: expression has no effect
error 001: expected token: ";", but found "]"
fatal error 107: too many error messages on one line
Line 167:
Код:
new File:File filepath[128], string[128], year,month,day, hour,minute,second;
Код:
public SaveToFile(filename[],text[]){ new File:File filepath[128], string[128], year,month,day, hour,minute,second; getdate(year,month,day); gettime(hour,minute,second); format(filepath,sizeof(filepath),"Thepath/%s.txt",filename); File = fopen(filepath,io_append); format(string,sizeof(string),"[%d.%d.%d %d:%d:%d] %s\r\n",day,month,year,hour,minute,second,text); fwrite(File,string); fclose(File); return 1;}