OnElementInteriorChange

From Multi Theft Auto: Wiki
Revision as of 01:50, 19 March 2021 by Patrick2562 (talk | contribs) (Undo revision 69653 by Patrick2562 (talk))
Jump to navigation Jump to search

This event is triggered when the interior of an element is changed using setElementInterior.

Parameters

int oldInterior, int newInterior
  • oldInterior: an int representing the interior the element was in before.
  • newInterior: an int representing the interior the element is in now.

Source

The source of this event is the element that changed its interior.

Example

local vehicle = createVehicle(411, 0, 0, 3)
setTimer(setElementDimension, 1000, 1, vehicle, 10)

addEventHandler("onElementInteriorChange", vehicle, function(oldInterior, newInterior)
    outputChatBox(inspect(source).."'s interior changed from "..oldInterior.." to "..newInterior)
end)

Requirements

This template will be deleted.

See Also

Element events


Event functions