GetAllElementData
From Multi Theft Auto: Wiki
Returns a table of all element data of an element.
Syntax
table getAllElementData ( element theElement )
Required Arguments
- theElement: the element you want to get the element data of.
Returns
If successful, returns a table with as keys the names of the element data and as values the corresponding element data values. Returns false in case of failure.
Example
This example script creates a new console command that displays all element data that is currently set on the player who enters the command.
function getMyData ( thePlayer, command ) local data = getAllElementData ( thePlayer ) -- get all the element data of the player who entered the command for k, v in pairs ( data ) do -- loop through the table that was returned outputConsole ( k .. ": " .. v ) -- print the name (k) and value (v) of each element data end end addCommandHandler ( "elemdata", getMyData )
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
- setElementFrozen
- setElementHealth
- setElementID
- setElementInterior
- setElementParent
- setElementPosition
- attachElements
- detachElements
- getElementModel
- getElementSyncer
- isElementInWater
- setElementAttachedOffsets
- setElementModel