setVehicleIdleRespawnDelay | Multi Theft Auto: Wiki Skip to content

setVehicleIdleRespawnDelay

Client-side
Server-side
Shared

Pair: getVehicleIdleRespawnDelay

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 at its position while empty.

Important

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

Syntax

setVehicleIdleRespawnDelay ( )

Code Examples

server

This example creates a vehicle and sets its respawn delay to 20 seconds.

theVehicle = createVehicle ( 400, 1, 1, 1 ) -- create us a new vehicle
if ( theVehicle ) then
toggleVehicleRespawn ( theVehicle, true ) -- enable vehicle respawn as it is necessary for the idle respawn to function
setVehicleIdleRespawnDelay ( theVehicle, 20000 ) -- tell the server to respawn the vehicle 20 seconds after it's been left.
end

See Also

Vehicle Functions