setVehicleRespawnDelay | Multi Theft Auto: Wiki Skip to content

setVehicleRespawnDelay

Client-side
Server-side
Shared

Pair: getVehicleRespawnDelay

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


This function sets the time delay (in milliseconds) the vehicle will remain wrecked before respawning.

Important

toggleVehicleRespawn must be set to true for this function to have any effect

Syntax

setVehicleRespawnDelay ( )

Code Examples

server

This example creates a vehicle and makes it so that it will respawn at its original position 20 seconds after it has blown up.

local vehicle = createVehicle ( 400, 1, 1, 1 ) -- create us a new vehicle
if vehicle then
toggleVehicleRespawn ( vehicle, true ) -- enable vehicle respawn
setVehicleRespawnDelay ( vehicle, 20000 ) -- tell the server to respawn the vehicle 20 seconds after it's blown
end

See Also

Vehicle Functions