28.09.2011, 20:03
Does anyone know why isn't this line breaking
Like instead of appearing, in my file, like this:
1,
2,
3,
It appears
1,2,3
Anyone know why?
Like instead of appearing, in my file, like this:
1,
2,
3,
It appears
1,2,3
Anyone know why?
pawn Код:
ew File:example = fopen("Admin/Logs/Labels.txt", io_append);
format(string,sizeof(string),"%f,%f,%f,%s,%i,%i;\n",x,y,z,currenttext,color,currentistele);
fwrite(example,string);
fclose(example);