Resource:OnElementSpawn: Difference between revisions
Jump to navigation
Jump to search
Godpolice13 (talk | contribs) |
Godpolice13 (talk | contribs) |
||
Line 42: | Line 42: | ||
</section> | </section> | ||
'''Author: Godpolice13 | <iframe width="420" height="345" src="https://youtube.com/y4tGcI_FUfE"> | ||
</iframe/> | |||
'''Author: Godpolice13''' | |||
{{See also/Server event|Element events}} | {{See also/Server event|Element events}} |
Revision as of 22:34, 25 November 2021
This Serverside Script adds the function: onElementSpawn.
Download can be found at the MTA community page.
Source
The source of this event is the element that spawned.
Code
Click to collapse [-]
Clientside ScriptaddEventHandler("onClientElementStreamIn", root, function() if getElementType(source) == "vehicle" then triggerServerEvent("onElementSpawnCheck", localPlayer, source) end end)
Click to collapse [-]
Serverside ScriptaddEvent("onElementSpawn", true) function onElementSpawnCheck(element) triggerEvent("onElementSpawn", element) end addEvent("onElementSpawnCheck", true) addEventHandler("onElementSpawnCheck", root, onElementSpawnCheck)
Example Code
Click to collapse [-]
Serverside Examplelocal Vehicle = createVehicle(411, 100, 100, 100) addEventHandler("onElementSpawn", root, function() if getElementType(source) == "vehicle" then setElementPosition(source, 0, 0, 3) end end)
<iframe width="420" height="345" src="https://youtube.com/y4tGcI_FUfE"> </iframe/>
Author: Godpolice13
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