OnPlayerHealthChange

From Vice City Multiplayer
Revision as of 14:39, 8 August 2014 by Franklin (talk | contribs) (Created page with "This is called when player's health amount changes. == Syntax == <pre>function onPlayerHealthChange( player, lastHP, newHP )</pre> == Parameters == * '''player''' - The po...")
(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

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 Events