I was talking to GrimJack in IRC and he gave me this bit of code, but I have no idea how to implement it, or how/where i would set my waypoints.
Code: Select all
Sub MoveToLoc
/if "$defined(Param0)"=="FALSE" /return
/if "$defined(Param1)"=="FALSE" /return
:LocMoveLoop
/if "$char(state)"=="SIT" /stand
/face nolook loc @Param0,@Param1
/if n $distance(@AnchorX,@AnchorY)>5 /sendkey down up
/if n $distance(@AnchorX,@AnchorY)<=5 {
/sendkey up up
/if "$char(state)"=="SIT" /stand
/return
}
/goto :LocMoveLoop
/return
