ScriptUO

Official ScriptUO EasyUO Scripts => Script Debug => Topic started by: Dan123The123Man on January 26, 2016, 02:16:23 AM

Title: for OpenEUO what is code to MoveTo next location if you can't get there to first
Post by: Dan123The123Man on January 26, 2016, 02:16:23 AM
For OpenEUO whats the code to MoveTo next location if you "Can't Get There" with the first location?

Ive tried:

if MoveTo(X,Y,Z) wait(500) = false then
MoveTo(X,Y,Z) wait(500)

but thats not working. I need to know how to make it MoveTo the second line there is the first one gets "Can't Get There" message for OpenEUO.


EDIT:

Also tried:

if MoveTo(X,Y,Z) wait(500) then
_CurrentCharPosX = UO.CharPosX
_CurrentCharPosY = UO.CharPosY


thinking maybe that would make him continue on standing where he is at if he cant make it to the first (X,Y,Z) coordinates, but that didnt work either.