GetLowLODElement

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This function return the low LOD element that an element is associated with.

Syntax

element getLowLODElement ( element theElement )

OOP Syntax Help! I don't understand this!

Method: element:getLowLOD(...)
Variable: .lowLOD
Counterpart: setLowLODElement


Required Arguments

  • theElement: The element whose low LOD version we want to get.

Returns

Returns a low LOD element if successful, false otherwise.

Example

Click to collapse [-]
Clientside example

This example is not done yet:

local obj = createObject(1488,0,0,3,0,0,90) -- Create object
local lod_obj = createObject(1337,0,0,3,0,0,90,true) -- Create OD object

setLowLODElement(obj,lod_obj) -- Setting LOD, 'attach' to obj

local lod_get = getLowLODElement(obj) -- Get LOD from obj

--lod_get = lod_obj 

Requirements

Minimum server version 1.2
Minimum client version 1.2

Note: Using this feature requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version server="1.2" client="1.2" />

See Also