IsPlayerDead

From Multi Theft Auto: Wiki
Revision as of 17:30, 25 March 2006 by JonChappell (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Description

This function returns a boolean value (true or false) depending on whether the specified player is dead or not.

Syntax

bool IsPlayerDead ( player )

Required Arguments

  • player: A player object referencing the specified player

Example

player = GetRandomPlayer ( 1 )
if ( IsPlayerDead ( player ) )
  serverChat  ( GetPlayerName ( player ) , " has bitten the dust." )
end