01.07.2011, 11:13
pawn Код:
stock AddLogLine( field[ ], file[ ], input[ ] )
{
new string[128];
format(string, 128, "%s: %s\r\n", field, input);
new File:fhandle;
if(fexist(file)) {
printf("Creating file '%s' because theres no file created with that name.", file);
}
fhandle = fopen(file,io_append);
fwrite(fhandle,string);
fclose(fhandle);
return 1;
}