Element data: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 8: Line 8:
* [[setElementData]]: sets an element data value.
* [[setElementData]]: sets an element data value.
* [[getElementData]]: retrieves an element data value.
* [[getElementData]]: retrieves an element data value.
==Relevant events==
* [[onElementDataChange]]: triggered on the server after element data is changed.
* [[onClientElementDataChange]]: triggered on the client after element data is changed.

Revision as of 12:28, 8 October 2018

Each element that is loaded is able to have element data values attached to it. These are values that can be accessed using a keyword string and directly correspond to the element's attributes in the map file, unless changed via scripting. Element data is a good way to store distributed information you want associated with an element, for example you could use it to associate a score with a player, or a team with a vehicle.

Element data is synchronized between the server and the client. Setting data from any of the two sides will force an update in the other, triggering the corresponding element data change events. This is very useful, as it provides a simple way to keep element properties synced without having to set special events to do it manually. This also means that excessive use of element data to store variables that are not required by both server and client becomes a waste of bandwidth.

Since not all datatypes can be packetized to be transferred, there are some restrictions. The types that cannot be stored as element data are non-element userdata (see MTA Classes), functions and threads. Also, you may not send tables which contain one or more values of any of these types.

Relevant functions

Relevant events