bigofsmall
New Member
- Joined
- Jan 14, 2011
- Messages
- 53
- Reaction score
- 0
Hi,everybody:
For some certain reason,I want to move to one very closer WoWPoint.
for example:
if me.location is (523.3755, 203.7819,1.927507)then I want move to (524.9781,203.9118,3.402912),I use ClickToMove or Navigator.MoveTo but it seem not work.
It's just one example,perhaps the distance will be more closer.
I also try follow, but still not work.
Is there any other way?
Thanks very much.
For some certain reason,I want to move to one very closer WoWPoint.
for example:
if me.location is (523.3755, 203.7819,1.927507)then I want move to (524.9781,203.9118,3.402912),I use ClickToMove or Navigator.MoveTo but it seem not work.
It's just one example,perhaps the distance will be more closer.
I also try follow, but still not work.
Code:
while (a < 50 && ObjectManager.Me.IsAlive && ObjectManager.Me.Location.Distance(TargetLocation) > 0.1f)
{
Navigator.MoveTo(WoWMovement.CalculatePointFrom((TargetLocation) , 0.1f));
Thread.Sleep(250);
++a;
}
Is there any other way?
Thanks very much.