TActivePlayer.Alive
property TActivePlayer.Alive: Boolean Access mode: RW
Description
Wether a player is alive or not.
Example
var i: byte;
begin
for i := 1 to 32 do if Players[i].Alive then
Players[i].Damage(i,4000); //kills all alive players
end;