24.10.2010, 22:01
Im using it like this:
So lagg or no lagg?
pawn Код:
forward ChatLog(string[]); // At top.
public ChatLog(string[]) // Function.
{
new entry[256];
format(entry, sizeof(entry), "%s\r\n",string);
new File:hFile;
hFile = fopen("RPG/Logs/chat.log", io_append);
fwrite(hFile, entry);
fclose(hFile);
}
new string[256]; // Where i want to use.
format(string, sizeof(string), "........",variables,variables); // Format the string.
ChatLog(string); // And save.
![Smiley](images/smilies/smile.png)