TEMP system
#6

I think I know your problem now:

pawn Код:
new days,hours,minutes,seconds;

initSeconds(secs){
seconds = secs%60;
secs -= seconds;
minutes = (secs%3600)/60;
secs -= minutes;
hours = (secs%216000)/3600;
secs -= hours;
days = (secs%5184000)/216000;
secs -= days;
}
This will probably convert correctly, but idk. Just try it, lol. Scripted it here just like that.
Reply


Messages In This Thread
TEMP system - by CrazyChoco - 04.08.2012, 09:27
Re: TEMP system - by CrazyChoco - 04.08.2012, 11:14
Re: TEMP system - by Misiur - 04.08.2012, 13:06
Re: TEMP system - by CrazyChoco - 04.08.2012, 16:00
Re: TEMP system - by DeathOnaStick - 04.08.2012, 16:15
Re: TEMP system - by DeathOnaStick - 04.08.2012, 16:27

Forum Jump:


Users browsing this thread: 7 Guest(s)