Moin,
In meinen Log Dateien wird nicht richtig geloggt.
Es kommt anstatt wie es sein soll nur folgendes:
Das Log Public sieht so aus:
public AdminLog(log[])
{
new data[256];
new hour,minute,sec,year,month,day;
gettime(hour,minute,sec);
getdate(year,month,day);
format(data,sizeof data,"\r\n[%d.%d.%d][%d:%d:%d]%s",day,month,year,hour,minute,sec,log);
new File:example = fopen("/logs/admin.txt",io_append);
fwrite(example,data);
fclose(example);
}
Loggen sollte er dann so unter nem Befehl z.b.:
new admstr[128],aname[MAX_PLAYER_NAME];
GetPlayerName(playerid,aname,sizeof(aname));
format(admstr,128,"%s hat den Befehl '/gmx' verwendet.",aname);
AdminLog(admstr);
Aber da kommt nur der Mist wie schon oben das Beispiel raus. Weiß wer etwas?
Mfg,
Seb