14.03.2013, 09:09
when you open a file you should use the File: tag
instead of passing a file handle you pass a string, which is incorrect and can lead to undefined behaviour.
You can find more about files here.
pawn Код:
new File:myFile = fopen(name,io_append);
fwrite(myFile,"hello");
fclose(myFile);
You can find more about files here.