OnPlayerHealthChange

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

This is called when player's health amount changes.

Syntax

function onPlayerHealthChange( player, lastHP, newHP )

Parameters

  • player - The pointer of the player
  • lastHP - The amount of health player had before the change
  • newHP - The current health amount

Example

This will tell the player if they got hurt.

function onPlayerHealthChange( player, lastHP, newHP )
{
     if ( lastHP > newHP ) MessagePlayer( "You just lost " + ( lastHP - newHP ) + " health.", player );
}

Notes

The function MessagePlayer was used in in this example. More info about it in the corresponding page.

Related Functions