Resource:OnElementSpawn: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 5: Line 5:


==Source==
==Source==
The source of this event is the vehicle that spawned.
The source of this event is the element that spawned.


==Code==
==Code==

Revision as of 16:38, 9 January 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 Script
addEventHandler("onClientElementStreamIn", root, function()
	if getElementType(source) == "vehicle" then
		triggerServerEvent("onElementSpawnCheck", localPlayer, source)
	end
end)
Click to collapse [-]
Serverside Script
addEvent("onElementSpawn", true)

function onElementSpawnCheck(element)
	triggerEvent("onElementSpawn", element)
end
addEvent("onElementSpawnCheck", true)
addEventHandler("onElementSpawnCheck", root, onElementSpawnCheck)

Example Code

Click to collapse [-]
Serverside Example
local Vehicle = createVehicle(411, 100, 100, 100)

addEventHandler("onElementSpawn", root, function()
	if getElementType(source) == "vehicle" then
		setElementPosition(source, 0, 0, 3)
	end
end)

Author: Godpolice13

See Also

Vehicle events


Event functions