RespawnVehicle: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 23: Line 23:
end
end
addEventHandler("onVehicleExplode", getRootElement(), respawnExplodedVehicle)
addEventHandler("onVehicleExplode", getRootElement(), respawnExplodedVehicle)
mooo
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{Vehicle functions}}
{{Vehicle functions}}
[[Category:Needs_Example]]

Revision as of 09:26, 28 March 2009

This function respawns a vehicle according to its set respawn position, set by setVehicleRespawnPosition. To spawn to a specific location, spawnVehicle can be used..

Syntax

bool respawnVehicle ( vehicle theVehicle )

Required Arguments

  • theVehicle: The vehicle you wish to respawn

Returns

Returns true if the vehicle respawned successfully, false if the passed argument does not exist or is not a vehicle.

Example

This example makes an exploded vehicle re-spawn after 5 seconds!

function respawnExplodedVehicle()
	setTimer(respawnVehicle, 5000, 1, source)
end
addEventHandler("onVehicleExplode", getRootElement(), respawnExplodedVehicle)

See Also