SA-MP Forums Archive
Unix tijd word niet gesaved - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Nederlands/Dutch (https://sampforum.blast.hk/forumdisplay.php?fid=31)
+---- Thread: Unix tijd word niet gesaved (/showthread.php?tid=553248)



Unix tijd word niet gesaved - Facerafter - 28.12.2014

Ik probeer een tempban cmd te maken met unix timestamps.
Alleen word de unix timestamp helemaal niet opgeslagen.

[pawn]
printf("Save started"); // Werkt
new INI:File = INI_Open(Path(playerid));
INI_SetTag(File, "data");
printf("%i", PlayerInfo[playerid][pTempBanned]); // Werkt
INI_WriteInt(File,"TempBanned", PlayerInfo[playerid][pTempBanned]);
printf("%i", PlayerInfo[playerid][pTempBanned]); // Werkt niet
INI_Close(File);
printf("Save ended"); // Werkt niet
[/pawn]

In mijn tempban cmd.
[pawn]
unixhours = hours*3600;
unixtime = gettime();
total = unixtime+unixhours;
PlayerInfo[playerid][pTempBanned] = total;[/pawn]

EDIT: Fixed, blijkbaar crashed strval (vanuit y_ini) op grote nummers, Fixes.inc verhelpte dit.