I was wondering what the defference is between these two cog verbs...
I cant get either to work.
I tried using jump to frame to move a simple
3do here and the cog just stops after MoveToFrame is done.
symbols
message entered
thing startube
flex speed=5.0
sector jumpsector
int cur_round=0 local
int rounds=25 desc=rounds
end
#===========================================================#
code
entered:
cur_round = 0;
while(cur_round < rounds)
{
movetoframe(startube, 1, speed);
jumptoframe(startube, 0, jumpsector);
cur_round = cur_round + 1;
}
end
I cant get either to work.
I tried using jump to frame to move a simple
3do here and the cog just stops after MoveToFrame is done.
symbols
message entered
thing startube
flex speed=5.0
sector jumpsector
int cur_round=0 local
int rounds=25 desc=rounds
end
#===========================================================#
code
entered:
cur_round = 0;
while(cur_round < rounds)
{
movetoframe(startube, 1, speed);
jumptoframe(startube, 0, jumpsector);
cur_round = cur_round + 1;
}
end