getAllElementData | Multi Theft Auto: Wiki Skip to content

getAllElementData

Client-side
Server-side
Shared

This page is incomplete! Help wanted!

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.

Syntax

getAllElementData ( )

Code Examples

server

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