OnElementModelChange: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Line 15: Line 15:


==Cancel effect==
==Cancel effect==
This event doesn't support [[Event system#Canceling|cancellation]]. Use setElementModel with the old value to reverse.
This event doesn't support [[Event system#Canceling|cancellation]]. Use [[setElementModel]] with the old value to reverse.


==Example==  
==Example==  

Revision as of 22:04, 2 April 2018

This event is triggered when the model of an element is changed using setElementModel.

Parameters

int oldModel, int newModel
  • oldModel: an int representing the model of the element before the change occurred.
  • newModel: an int representing the new model of the element.

Source

The source of this event is the element that changed its model

Cancel effect

This event doesn't support cancellation. Use setElementModel with the old value to reverse.

Example

This example sends a message to players when their model changes telling them what the model ID is and was.

function informPlayerOnModelChange(oldModel, newModel)
    if ( getElementType(source) == "player" ) then -- Make sure the element is a player
        outputChatBox("Model ID changing from: "..oldModel.." to: ".. newModel, source, 0, 255, 0) -- Message for player
    end
end
addEventHandler("onElementModelChange", root, informPlayerOnModelChange) -- Bind the event to every element

See Also

Element events


Event functions