getLowLODElement | Multi Theft Auto: Wiki Skip to content

getLowLODElement

Client-side
Server-side
Shared

Pair: setLowLODElement

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


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

Syntax

getLowLODElement ( )

Code Examples

server

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 LOD object
setLowLODElement(obj,lod_obj) -- Setting LOD, 'attach' to obj
local lod_get = getLowLODElement(obj) -- Get LOD from obj
--lod_get = lod_obj

See Also

Element Functions