SA-MP Forums Archive
Doube line on log? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Doube line on log? (/showthread.php?tid=193454)



Doube line on log? - Face9000 - 26.11.2010

Hai,i've a problem with a small log:

This saves the health of player when disconnect in a log file:

Код:
	new string[128];
    new File:log = fopen("/LogS/hp.log", io_append);
    new Float:health; GetPlayerHealth(playerid,health);
    format(string,64, "Player %s quitted with health: %f\r\n", playername, health);
    fwrite(log, string);
    fclose(log);
I've a problem,why when i open the logs,i see 2-3 same lines and different HP?

Like this:

Player Jim_Kill quitted with health: 100.000000
Player Jim_Kill quitted with health: 17.000000
Player Jim_Kill quitted with health: 0.000000

Thanks.