OnVehicleHealthChange

From Vice City Multiplayer
Revision as of 22:22, 30 January 2017 by Thijn (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing

Description

This event is called when a vehicles Health is changed.

Syntax

OnVehicleHealthChange( vehicle, oldHP, newHP )

Example

function OnVehicleHealthChange( vehicle, oldHP, newHP )
{
   Message("Vehicle: "+vehicle+"'s health has been changed to "+newHP+" from "+oldHP)
}

Related Functions