OnClientElementDataChange: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 19: Line 19:
function ( dataName )
function ( dataName )
if getElementType ( source ) == "player" and dataName == "score" then
if getElementType ( source ) == "player" and dataName == "score" then
outputChatBox ( getPlayerName(source).."'s new score is "..getElementData ( source, "score".."!" )
outputChatBox ( getPlayerName(source).."'s new score is "..getElementData (source, "score").."!" )
end
end
end )
end )
</syntaxhighlight>
</syntaxhighlight>

Revision as of 14:49, 10 December 2007

This event is triggered whenever an element's element data is changed.

Parameters

string dataName
  • dataName: A string representing the element data that was changed

Source

The source of this event is the element that had its element data changed

Example

This example tells the client whenever a player's "score" element data is changed.

addEventHandler ( "onClientElementDataChange", getRootElement(),
function ( dataName )
	if getElementType ( source ) == "player" and dataName == "score" then
		outputChatBox ( getPlayerName(source).."'s new score is "..getElementData (source, "score").."!" )
	end
end )