OnClientVehicleRespawn

From Multi Theft Auto: Wiki
Revision as of 05:10, 27 April 2012 by Jaysds (talk | contribs)
Jump to navigation Jump to search

This event is triggered when a vehicle respawns.

Parameters

This event has no parameters.

Source

The source of this event is the vehicle that respawned.

Example

This example outputs to the console that a vehicle has respawned.

addEventHandler("onClientVehicleRespawn",root,function()
	outputConsole("A vehicle has respawned.")
end)

See Also

Client vehicle events


Client event functions