GetElementData

From Multi Theft Auto: Wiki
Revision as of 17:32, 21 August 2006 by Vandalite (talk | contribs)
Jump to navigation Jump to search

Elements can contain data values. These are accessable via names, and their value can be retrieved using getElementData and set using setElementData. These values are also loaded from the attributes in the XML map files, and as such can provide a powerful way to store and retrieve data in XML for each element.

Syntax

string getElementData ( element theElement, string name )

Required Arguments

  • theElement: This is the element with data you want to retreive.
  • name: The name of the element data entry you want to retrieve.

Returns

This function returns a string containing the requested element data, or false if the element data does not exist, or the element itself does not exist.

Example

This example will store the version of the map in the variable mapVersion. Generally this will be 2.0 in the final release.

map = getRootElement ( )
mapVersion = getElementData ( map, "version" )

See Also