22.05.2017, 20:49
change the fcreate stock to this:
PHP код:
stock fcreate(filename[])
{
if(fexist(filename)) return false;
new File:file = fopen(filename, io_write);
new File:handle = fopen(filename, io_append);
if(!handle) return false;
return fclose(file);
}