11.12.2009, 09:41
pawn Код:
//=========================[TeamChatLog]========================================
stock TeamChatLog(string[]){
new entry[256];
format(entry, sizeof(entry), "%s\n",string);
new File:hFile;
hFile = fopen("teamchat.txt", io_append);
fwrite(hFile, entry);
fclose(hFile);
}