Which is the best way to save chat logs/command logs, etc?
#4

Replace:
pawn Код:
hFile = fopen("Logs/chat.txt",io_append);
fwrite(hFile,entry);
fclose(hFile);
with:
pawn Код:
hFile = fopen("Logs/chat.txt",io_append);
if (hFile)
{
    fwrite(hFile,entry);
    fclose(hFile);
}
I already mentioned that it can crash the server in that thread. It's good to read the comments before using something!
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 2 Guest(s)