forward ChatLog(string[]);public ChatLog(string[]){new entry[255];format(entry, sizeof(entry), \"%s\\r\\n\",string);new File:hFile;hFile = fopen(\"Logok/ChatLog.log\", io_append);fwrite(hFile, entry);fclose(hFile);}