SetVehicleRespawnDelay: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
(2 intermediate revisions by 2 users not shown)
Line 5: Line 5:
==Syntax==
==Syntax==
<syntaxhighlight lang="lua">bool setVehicleRespawnDelay ( vehicle theVehicle, int timeDelay )</syntaxhighlight>
<syntaxhighlight lang="lua">bool setVehicleRespawnDelay ( vehicle theVehicle, int timeDelay )</syntaxhighlight>
 
{{OOP||[[vehicle]]:setRespawnDelay|respawnDelay}}
===Required Arguments===
===Required Arguments===
*'''theVehicle''': The [[vehicle]] you wish to change the respawn delay of.
*'''theVehicle''': The [[vehicle]] you wish to change the respawn delay of.
Line 18: Line 18:
newvehicle = createVehicle ( 400, 1, 1, 1 )      -- create us a new vehicle
newvehicle = createVehicle ( 400, 1, 1, 1 )      -- create us a new vehicle
if ( newvehicle ) then
if ( newvehicle ) then
     toggleVehicleRespawn ( newvehicle, true ) -- enable vehicle respawn
     toggleVehicleRespawn ( newvehicle, true )     -- enable vehicle respawn
     setVehicleRespawnDelay ( newvehicle, 20000 )  -- tell the server to respawn the vehicle 20 seconds after it's blown
     setVehicleRespawnDelay ( newvehicle, 20000 )  -- tell the server to respawn the vehicle 20 seconds after it's blown
end
end

Latest revision as of 23:20, 17 December 2014

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

[[{{{image}}}|link=|]] Important Note: toggleVehicleRespawn must be set to true for this function to have any effect

Syntax

bool setVehicleRespawnDelay ( vehicle theVehicle, int timeDelay )

OOP Syntax Help! I don't understand this!

Method: vehicle:setRespawnDelay(...)
Variable: .respawnDelay


Required Arguments

  • theVehicle: The vehicle you wish to change the respawn delay of.
  • timeDelay: The amount of milliseconds to delay.

Returns

Returns true if the vehicle was found and edited.

Example

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

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

See Also