Object coordinates class Orion Assistant - Hotride/OrionUO GitHub Wiki
Command format:
ReturnType NameSpace.name(requiredParameters, [optionalParameters=defaultValue]);
-
ReturnType - the return value of the function (void - the function returns nothing);
-
NameSpace - the scope of the function;
-
name - the name of the function;
-
requiredParameters - required parameters;
-
optionalParameters - optional parameters, the default value is indicated after the = sign
int pos.X();
Returns: x coordinate.
int pos.Y();
Returns: y coordinate.
Introduced in 3.0.0.0
int pos.Z();
Returns: z coordinate.