getAllElementData | Multi Theft Auto: Wiki Skip to content

getAllElementData

Client-side
Server-side
Shared

Manual Review Required

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


Returns a table of all element data of an element.

OOP Syntax Help! I don't understand this!

Syntax

table getAllElementData ( element theElement )
Required Arguments
  • theElement: the element you want to get the element data of.

Returns

  • table: value

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.

Code Examples

shared

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 .. ": " .. tostring ( v ) ) -- print the name (k) and value (v) of each element data, we need to make the value a string, since it can be of any data type
end
end
addCommandHandler ( "elemdata", getMyData )

See Also

Element Functions