CreateElement: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 16: Line 16:


==Example==
==Example==
<section name="Server" class="server" show="true">
This example creates a "flag" element, named "blue", which will be at the root of the element tree.
This example creates a "flag" element, named "blue", which will be at the root of the element tree.


Line 27: Line 26:
<flag id="blue" />
<flag id="blue" />
</syntaxhighlight>
</syntaxhighlight>
</section>


==See Also==  
==See Also==  
{{element functions}}
{{element functions}}

Revision as of 16:58, 15 August 2007

This function is used to create dummy elements in the element table, but do not have a counterpart within the San Andreas world. A common use for this function is for creating custom elements, such as a Flag or a Base.

Syntax

element createElement ( string id, string type )

Required Arguments

  • id: The ID of the element being created.
  • type: The type of element being created. This value will be returned if getElementType is used on it.

Returns

Returns the element if it was successfully created. Returns false if the arguments are wrong or if the type is not allowed. Unallowed types include hard-coded MTA elements (such as "vehicle") and the type "dummy".

Example

This example creates a "flag" element, named "blue", which will be at the root of the element tree.

blueTeamFlag = createElement( "blue", "flag" )

This will have the same effect as having this in .map:

<flag id="blue" />

See Also