GetAttachedElements
From Multi Theft Auto: Wiki
This function returns a table of all the elements attached to the specified element
Syntax
table getAttachedElements ( element theElement )
Required Arguments
- theElement: The element which you require the information from.
Returns
Returns a table of all the elements attached to the specified element.
Example
Click to collapse [-]
Server-- Print a list of all the players attached to the specified element local Inf = getElementByID ( "infernus1" ) local attachedElements = getAttachedElements ( Inf ) if ( attachedElements ) then -- if we got the table local attachedElementsList = "none" -- Loop through the table for ElementKey, ElementValue in ipairs ( attachedElements ) do -- add their name to the list if ( getElementType ( ElementValue ) == "player" ) then if ( attachedElementsList == "none" ) then attachedElementsList = getPlayerName ( ElementValue ) else attachedElementsList = attachedElementsList .. ", " .. getPlayerName ( ElementValue ) end end end outputConsole ( "Players attached to the infernus: " .. attachedElementsList ) end
See Also
- clearElementVisibleTo
- cloneElement
- createElement
- destroyElement
- getAllElementData
- getAttachedElements
- getElementAlpha
- getElementAttachedOffsets
- getElementCollisionsEnabled
- getElementAttachedTo
- getElementByID
- getElementByIndex
- getElementChild
- getElementChildren
- getElementChildrenCount
- getElementColShape
- getElementData
- getElementDimension
- getElementHealth
- getElementID
- getElementInterior
- getElementParent
- getElementPosition
- getElementRotation
- getElementsByType
- getElementsWithinColShape
- getElementType
- getElementVelocity
- getElementZoneName
- getRootElement
- isElement
- isElementAttached
- isElementDoubleSided
- isElementFrozen
- isElementVisibleTo
- isElementWithinColShape
- removeElementData
- setElementAlpha
- setElementCollisionsEnabled
- setElementData
- setElementDoubleSided
- setElementDimension
- setElementFrozen
- setElementHealth
- setElementID
- setElementInterior
- setElementParent
- setElementPosition
- setElementSyncer
- setElementRotation
- setElementVelocity
- setElementVisibleTo
- attachElements
- detachElements
- getElementModel
- getElementSyncer
- isElementInWater
- setElementAttachedOffsets
- setElementModel
- setLowLODElement
- getLowLODElement
- isElementLowLOD