SetVehicleRespawnDelay

From Multi Theft Auto: Wiki
Revision as of 15:40, 20 June 2006 by MrJax (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Description

This function sets the time delay (in miliseconds) the vehicle will remain blown before respawning

Syntax

bool setVehicleRespawnDelay ( vehicle theVehicle, timeDelay )

Required Arguments

  • theVehicle: The vehicle you wish to change the respawn delay of.
  • timeDelay: A whole number representing the ammount of miliseconds to delay.

Returns

Returns 'true' if the vehicle was found and edited.

Example

vehicle = createVehicle ( 400, 1, 1, 1 ) -- create us a new vehicle
if ( vehicle ) then
  setVehicleRespawnDelay ( vehicle, 2000 ) -- tell the server to respawn the vehicle 2seconds after its blown
end

See Also