OnElementInteriorChange
Jump to navigation
Jump to search
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(setElementInterior, 1000, 1, vehicle, 10) addEventHandler("onElementInteriorChange", vehicle, function(oldInterior, newInterior) outputChatBox(inspect(source).."'s interior changed from "..oldInterior.." to "..newInterior) end)
Requirements
Minimum server version | 1.5.8-9.20837 |
---|---|
Minimum client version | n/a |
Note: Using this feature requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version server="1.5.8-9.20837" />