(Official) LUA Scripting Documentation
get_aux
Get the aux data at a map point.
Spec:
get_aux(
long x,
long y,
long z)
Parameters
x
: The x component of the map pointy
: The y component of the map pointz
: The z component of the map point
Returns
long
: The aux data. See Aux Data
Example
local x,y,z = get_script_point()
local aux = get_aux(x,y,z)
This example gets the aux data of the script block that executed this script.
Incomplete
This documentation is incomplete