TPlayer.Alive

From Soldat Community Wiki
Revision as of 13:53, 29 July 2013 by Mighty (talk | contribs) (new page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
property Alive: Boolean
 Access mode: R

Description

True if a player is currently alive, false otherwise.

Example

Example kills all players that are alive

 var
  i: Byte;
 begin
  for i := 1 to 32 do if Players[i].Alive then
   Players[i].Alive := FALSE;
 end;