I mean, if i call to often ApplyForce, it will apply nothing.
I did a thing :
if (...)
print();
call move;
move:
dothings;
After a few moves, the bot was frozen, whereas i had the print message.
So i made this
IF (...)
print();
dothings;
And it worked
But now i have the pb, its the same for "Jk functions"
If in my doThings bloc i have "Applyforce". It wont apply anything after a few moves.
How can i correct this ?
what is the max function calls before "saturation" or i dunno?
----
i have an other question :
when you recieve a trigger, a pulse or anything, does it call it immediatly, or jk store the call with a fifo/lifo system, and waits :
-end of current execution ? ( i mean between{} )
-end of current function ?
[This message has been edited by TCNF_Merfolk (edited November 10, 2002).]
I did a thing :
if (...)
print();
call move;
move:
dothings;
After a few moves, the bot was frozen, whereas i had the print message.
So i made this
IF (...)
print();
dothings;
And it worked
But now i have the pb, its the same for "Jk functions"
If in my doThings bloc i have "Applyforce". It wont apply anything after a few moves.
How can i correct this ?
what is the max function calls before "saturation" or i dunno?
----
i have an other question :
when you recieve a trigger, a pulse or anything, does it call it immediatly, or jk store the call with a fifo/lifo system, and waits :
-end of current execution ? ( i mean between{} )
-end of current function ?
[This message has been edited by TCNF_Merfolk (edited November 10, 2002).]