19.10.2015, 15:16
How to transfer this to Y_INI?
PHP код:
public AllCommandLog(string[])
{
new entry[64];
format(entry, sizeof(entry), "%s\r\n",string);
new File:hFile;
hFile = fopen("logs/allcommands.log", io_append);
fwrite(hFile, entry);
fclose(hFile);
}