getElementByID | Multi Theft Auto: Wiki Skip to content

getElementByID

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.


This function returns an element from the specified ID. If more than one element with the same ID exists, only the first one in the order it appears in the XML tree will be returned by this function.

Note

The ID in this context is the value of the 'id' data item of the element (the id=".." attribute in the .map file), NOT the model ID, weapon ID or similiar.

OOP Syntax Help! I don't understand this!

  • Note: This function is a static function underneath the Element class.

  • Method:Element.)(...)

Syntax

element getElementByID ( string id, [ int index = 0 ] )
Required Arguments
  • id: The ID of the element as it appears in the XML file or as set by setElementID .
Optional Arguments

NOTE: When using optional arguments, you might need to supply all arguments before the one you wish to use.

  • index (default: 0): If there are two or more elements of the same ID it will return the element with the specified index starting at 0.

Returns

  • element: value

Returns the element with the given ID, or false if no such element exists.

Code Examples

shared

Assuming we have this in the .map file:

<vehicle id="vipVehicle" posX="10" posY="10" posZ="4" model="602" />

See Also

Element Functions