UOSteam Macro Help

Zirokden

Neophyte
Hey

Is it possible to define a location (example X Y Z, grab this location ingame idk how) and then compare its location to the player location ? (i want to make a simple go-to location macro)

Thanks alot
 
this may help

if not @inrange 'tobetamed' 1
if @x 'tobetamed' > x 'self' and @y 'tobetamed' > y 'self'
walk 'Southeast'
elseif @x 'tobetamed' < x 'self' and @y 'tobetamed' > y 'self'
walk 'Southwest'
elseif @x 'tobetamed' > x 'self' and @y 'tobetamed' < y 'self'
walk 'Northeast'
elseif @x 'tobetamed' < x 'self' and @y 'tobetamed' < y 'self'
walk 'Northwest'
elseif @x 'tobetamed' > x 'self' and @y 'tobetamed' == y 'self'
walk 'East'
elseif @x 'tobetamed' < x 'self' and @y 'tobetamed' == y 'self'
walk 'West'
elseif @x 'tobetamed' == x 'self' and @y 'tobetamed' > y 'self'
walk 'South'
elseif @x 'tobetamed' == x 'self' and @y 'tobetamed' < y 'self'
walk 'North'
endif
endif
 
Top