OnVehicleRespawn: Difference between revisions

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing
(Created page with "This event is called when a vehicle is respawned. == Syntax == <pre>onVehicleRespawn( vehicle )</pre> == Arguments == * ''CVehicle'' '''vehicle''' - The vehicle instance, or...")
(No difference)

Revision as of 13:57, 9 March 2016

This event is called when a vehicle is respawned.

Syntax

onVehicleRespawn( vehicle )

Arguments

  • CVehicle vehicle - The vehicle instance, or the vehicle which is being respawned.

Example

function onVehicleRespawn( vehicle ) {
Message( vehicle.ID + " respawned!");
}