GetAllElementData

From Multi Theft Auto: Wiki
Revision as of 12:15, 28 March 2008 by Arc (talk | contribs)
Jump to navigation Jump to search

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