SA-MP Forums Archive
toggle clock bugged. - 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)
+--- Thread: toggle clock bugged. (/showthread.php?tid=419366)



toggle clock bugged. - Fernado Samuel - 28.02.2013

Removed


Re: toggle clock bugged. - Jeffry - 28.02.2013

At OnPlayerSpawn:
pawn Код:
new hour, minutes;
GetPlayerTime(playerid, hour, minutes);
hour += 12;
if(hour > 23) hour -= 24;
SetPlayerTime(playerid, hour, minutes);
Should fix it.


Re: toggle clock bugged. - Fernado Samuel - 28.02.2013

not working, still the same


Re: toggle clock bugged. - Fernado Samuel - 01.03.2013

DUMP