Difference between revisions of "UO.CharPosX"
From OpenEUO
					
										
					
					|  (Created page with "== UO.CharPosX ==  This is be used to get the X Position of your Char.   USE:  X = UO.CharPosX  SAMPLECODE:    function finddist(nX,nY)      nX = math.abs(UO.CharPosX - nX)      ...") | |||
| Line 1: | Line 1: | ||
| − | |||
| − | |||
| This is be used to get the X Position of your Char.   | This is be used to get the X Position of your Char.   | ||
Revision as of 08:31, 5 October 2010
This is be used to get the X Position of your Char.
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)
