UO.CharPosX
From OpenEUO
Revision as of 10:44, 9 October 2010 by 76.184.213.234 (Talk)
This is be used to get the X Position of your character in game world coordinates.
USE:
X = UO.CharPosX
SAMPLECODE:
function finddist(nX,nY) nX = math.abs(UO.CharPosX - nX) nY = math.abs(UO.CharPosY - nY) return math.max(nX, nY) end
EXPLAIN:
If you call the function and give x coord and y coord it will give you back the distance from your char to the given Position
(mindi)