Multi Theft Auto: Wiki:OnVehicleSpawn: Difference between revisions
Jump to navigation
Jump to search
Godpolice13 (talk | contribs) No edit summary |
Godpolice13 (talk | contribs) No edit summary |
||
Line 2: | Line 2: | ||
This Serverside Script adds the function: onVehicleSpawn. | This Serverside Script adds the function: onVehicleSpawn. | ||
'''Download can be found at the [https://community.multitheftauto.com/index.php?p=resources&s=details&id=18374 MTA community page].''' | '''Download can be found at the''' [https://community.multitheftauto.com/index.php?p=resources&s=details&id=18374 MTA community page]'''.''' | ||
==Source== | ==Source== |
Revision as of 16:35, 8 January 2021
This Serverside Script adds the function: onVehicleSpawn.
Download can be found at the MTA community page.
Source
The source of this event is the vehicle that spawned.
Code
Click to collapse [-]
Clientside ScriptaddEventHandler("onClientElementStreamIn", root, function() if getElementType(source) == "vehicle" then triggerServerEvent("onVehicleSpawnCheck", localPlayer, source) end end)
Click to collapse [-]
Serverside ScriptaddEvent("onVehicleSpawn", true) function onVehicleSpawnCheck(vehicle) triggerEvent("onVehicleSpawn", vehicle) end addEvent("onVehicleSpawnCheck", true) addEventHandler("onVehicleSpawnCheck", root, onVehicleSpawnCheck)
Example Code
Click to collapse [-]
Serverside Examplelocal Vehicle = createVehicle(411, 100, 100, 100) addEventHandler("onVehicleSpawn", root, function() setElementPosition(source, 0, 0, 3) end)
Author: Godpolice13
See Also
Vehicle events
- onTrailerAttach
- onTrailerDetach
- onVehicleDamage
- onVehicleEnter
- onVehicleExit
- onVehicleExplode
- onVehicleRespawn
- onVehicleStartEnter
- onVehicleStartExit
Event functions
- addEvent
- addEventHandler
- cancelEvent
- cancelLatentEvent
- getEventHandlers
- getLatentEventHandles
- getLatentEventStatus
- removeEventHandler
- triggerEvent
- wasEventCancelled