OnElementInteriorChange: Difference between revisions
Jump to navigation
Jump to search
Patrick2562 (talk | contribs) (Created page with "__NOTOC__ {{Server event}} {{New feature/item|3.0160|1.5.8|20837|This event is triggered when the interior of an element is changed using setElementInterior.}} ==Para...") |
Patrick2562 (talk | contribs) No edit summary |
||
Line 24: | Line 24: | ||
==Requirements== | ==Requirements== | ||
{{Requirements|1.5.8-9.20837| | {{Requirements|1.5.8-9.20837|1.5.8-9.20837|}} | ||
{{See also/Server event|Element events}} | {{See also/Server event|Element events}} |
Revision as of 01:49, 19 March 2021
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
- onElementClicked
- onElementColShapeHit
- onElementColShapeLeave
- onElementDataChange
- onElementDestroy
- onElementDimensionChange
- onElementInteriorChange
- onElementModelChange
- onElementStartSync
- onElementStopSync
Event functions
- addEvent
- addEventHandler
- cancelEvent
- cancelLatentEvent
- getEventHandlers
- getLatentEventHandles
- getLatentEventStatus
- removeEventHandler
- triggerEvent
- wasEventCancelled