onElementInteriorChange | Multi Theft Auto: Wiki Skip to content

onElementInteriorChange

Client-side
Server-side
Shared

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

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

Code Examples

server
local vehicle = createVehicle(411, 0, 0, 3)
setTimer(setElementInterior, 1000, 1, vehicle, 10)
addEventHandler("onElementInteriorChange", vehicle, function(oldInterior, newInterior)
outputChatBox(inspect(source).."'s interior changed from "..oldInterior.." to "..newInterior)
end)

See Also

Element Functions