15.05.2015, 02:02
In which way i can convert this public to y_ini?
My friend say me, i don't need convert this to ini.
But i suppose i need convert this in key=value format.
What i need to do.
My friend say me, i don't need convert this to ini.
But i suppose i need convert this in key=value format.
What i need to do.
PHP код:
public KickLog(string[])
{
new entry[200];
format(entry, sizeof(entry), "%s\r\n",string);
new File:hFile;
hFile = fopen("/Logs/kick.log", io_append);
fwrite(hFile, entry);
fclose(hFile);
}