21.08.2010, 10:01
pawn Код:
//oncommandtext
new file[50]
//savetofile
CopyToFile(file[], string[])
{
new entry[128];
format(entry, sizeof(entry), "%s\r\n", string);
new File:hFile = fopen(file, io_append);
if(hFile)
{
fwrite(hFile, entry);
fclose(hFile);
}
}