Author Topic: Schedules Going Haywire!?  (Read 1423 times)

Yeah.

That's what I meant.
I don't remember the scientific notation cap being so low.
I always thought it started at 2^31

I don't remember the scientific notation cap being so low.
I always thought it started at 2^31
Yeah.

Apparently not.

Isn't Torque 32 Bit?

I don't remember the scientific notation cap being so low.
I always thought it started at 2^31

Oh. ;-;
« Last Edit: October 10, 2010, 04:19:22 PM by Pew446 »

I don't remember the scientific notation cap being so low.
I always thought it started at 2^31
Any math 1000000 and higher.

Just use a bunch of smaller schedule loops.

Code: [Select]
function everyhour()
{

}

$mintohour = 0;

function everyminute()
{
$mintohour++;
if(mintohour > 60)
{
$mintohour = 0;
everyhour();
}
schedule(60000,0,everyminute);
}

Anything in "everyhour()" would run... every hour.

Thanks everyone, it works without the multiplication. I never knew what 32bit meant mathematically..

Locking