The code WORKS. I'm not trying to get help on moving something. The problem is that I don't want it to gradually "move" north. I want it to "teleport" north instantly. I found a command in the allclasses.htm called jumpto but I don't know if that's what I want, nor do I know how to use it.
I searched for this topic, but came up short.
I tried putting the move-time to 0.0, but that does not seem to work. Any suggestions? What should I use as the value for time? or should I use something other than time? (not speed).
Code: Select all
start_object:
$t1 time 1.0
$t1 movesouth 2048
$t1 waitmove
thread loop_object
end
loop_object:
$t1 time 0.0
$t1 movenorth 3072
$t1 waitmove
$t1 time 1.0
$t1 movesouth 3072
$t1 waitmove
thread loop_object
end
-Stevo

