28.01.2012, 09:49
(
Последний раз редактировалось xinix000; 28.01.2012 в 11:54.
)
pawn Код:
public TrueLog(string[])
{
new entry[256];
format(entry, sizeof(entry), "%s\n",string);
new File:hFile;
hFile = fopen("true.log", io_append);
fwrite(hFile, entry);
fclose(hFile);
}