Habe im Script:
Function CKLog(string[])
{
new entry[256];
format(entry, sizeof(entry), "%s\n",string);
new File:hFile;
hFile = fopen("/Logs/ck.log", io_append);
fwrite(hFile, entry);
fclose(hFile);
}
Function PayLog(string[])
{
new entry[256];
format(entry, sizeof(entry), "%s\n",string);
new File:hFile;
hFile = fopen("/Logs/pay.log", io_append);
fwrite(hFile, entry);
fclose(hFile);
}
Function KickLog(string[])
{
new entry[256];
format(entry, sizeof(entry), "%s\n",string);
new File:hFile;
hFile = fopen("/Logs/kick.log", io_append);
fwrite(hFile, entry);
fclose(hFile);
}
Function Clear(string[])
{
new entry[256];
format(entry, sizeof(entry), "%s\n",string);
new File:hFile;
hFile = fopen("/Logs/Clear.log", io_append);
fwrite(hFile, entry);
fclose(hFile);
}
Function SKickLog(string[])
{
new entry[256];
format(entry, sizeof(entry), "%s\n",string);
new File:hFile;
hFile = fopen("/Logs/skick.log", io_append);
fwrite(hFile, entry);
fclose(hFile);
}
Function UnbanipLog(string[])
{
new entry[256];
format(entry, sizeof(entry), "%s\n",string);
new File:hFile;
hFile = fopen("/Logs/Unbanip.log", io_append);
fwrite(hFile, entry);
fclose(hFile);
}
Function SperreLog(string[])
{
new entry[256];
format(entry, sizeof(entry), "%s\n",string);
new File:hFile;
hFile = fopen("/Logs/Sperre.log", io_append);
fwrite(hFile, entry);
fclose(hFile);
}
Function BanLog(string[])
{
new entry[256];
format(entry, sizeof(entry), "%s\n",string);
new File:hFile;
hFile = fopen("/Logs/ban.log", io_append);
fwrite(hFile, entry);
fclose(hFile);
}
Function MemberLog(string[])
{
new entry[256];
format(entry, sizeof(entry), "%s\n",string);
new File:hFile;
hFile = fopen("/Logs/Member.log", io_append);
fwrite(hFile, entry);
fclose(hFile);
}
Function LeaderLog(string[])
{
new entry[256];
format(entry, sizeof(entry), "%s\n",string);
new File:hFile;
hFile = fopen("/Logs/Leader.log", io_append);
fwrite(hFile, entry);
fclose(hFile);
}
Aber viele Logs speichern und auch viele nicht!
Woran liegt das?!
/kick wird nicht geloggt, aber /ban wieso ?