Hiya
Does anyone know how to move to a specific loc? There would not be any targetable object at that loc.
Would you need to resort to $char(x) and $char(y) checking with trial-and-error turning, moving and rechecking?
Cheers
Beatnik
Moderator: MacroQuest Developers

Code: Select all
Sub MoveToLoc(Location)
/keypress Forward Hold
:AnchorLoop
/if n ${Math.Distance[${Me.Y},${Me.X}:@Location]}<=10 {
/keypress Forward
/return
}
/face fast loc @Location nolook
/goto :AnchorLoop
/return