OnElementDataChange: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
m (See Also for server events)
Line 26: Line 26:


[[Category:Needs Example]]
[[Category:Needs Example]]
{{See also/Server event|Element events}}

Revision as of 17:37, 12 January 2008

This event is triggered when an elementdata entry for an element changes. A client can perform this change on the element or it can be done using setElementData.

Parameters

string theName, var theOldValue
  • theName: The name of the element data entry that changed
  • theOldValue: The old value of this entry before it changed. The new value can be accessed using getElementData ( source, theName ).

Source

The source of this event is the element whose elementdata changed.

Example

This example does...

--This line does...
blah()
--This line does this...
mooo

See Also

Element events


Event functions