SA-MP Forums Archive
days of seconds. - 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: days of seconds. (/showthread.php?tid=285545)



days of seconds. - budelis - 24.09.2011

Hi all.I want to ask how to convert second to days? i try to do that:

Код:
new Days = (Seconds/(3600*24))%24;
But not work.


Re: days of seconds. - Riddick94 - 24.09.2011

https://sampforum.blast.hk/showthread.php?tid=254915 can help?


Re: days of seconds. - budelis - 24.09.2011

It's no help me.


Re: days of seconds. - aRoach - 24.09.2011

pawn Код:
new Days = floatround( Seconds / 86400, floatround_floor ) % 24;
or
pawn Код:
new Days = floatround( Seconds / 86400, floatround_floor );



Re: days of seconds. - budelis - 24.09.2011

no work.


Re: days of seconds. - playbox12 - 24.09.2011

http://forum.sa-mp.com/showpost.php?...&postcount=973

That should help you out.