12.10.2016, 15:52
Hi guys,
I made a stock of logging commands but It makes it look like
How do I fix this?
the LogCmd stock
Thanks
I made a stock of logging commands but It makes it look like
Код:
Player blah performed the command /testPlayer blah performed the command /test
the LogCmd stock
PHP код:
stock LogCmd(event[])
{
new File:log = fopen(CMD_LOG,io_append);
fwrite(log,"\n");
fwrite(log,event);
fclose(log);
}
![Cheesy](images/smilies/biggrin.png)