What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

PB - MoveTo

seVen

New Member
Joined
Jan 31, 2010
Messages
589
Reaction score
20
Got some annoying problems with MoveTo function - bot always waits 3 or more seconds until it moves to the next spot is there another way to run exact waypoints without the break? (CTM doesn't seem to work properly)
 
Last edited:
Got some annoying problems with MoveTo function - bot always waits 3 or more seconds until it moves to the next spot is there another way to run exact waypoints without the break? (CTM doesn't seem to work properly)

Not really, what I did was a MoveTo, with CTM not Navigator selected, it was a bit faster. :-\
 
Yea tryed with CTM (but PB just ignored these) MoveTo with navi and without - all of them are sloooooooow- oh well the profile is already released they should download what they get ^^
 
CTM works, but the thing is if you have several of them after eachother they'll all be executed at the same time. When using the CTM, it doesn't wait until you reached the point before it fires the next one. So what you'll need to make a series of CTM is like this:
Code:
CTM(x,y,z);
Wait(DistanceTo(x,y,z) < 7)
CTM(x1,y1,z1);
Wait(DistanceTo(x1,y1,z1) < 7)
etc..

You might want to use a different value than 7, but you can can try out which value works best for you.
 
Back
Top