Difference between revisions of "TActivePlayer.Alive"
(Created page with " '''''property TActivePlayer.Alive: Boolean''''' Acess mode: RW ==Description== Wether a player is alive or not. ==Example== <syntaxhighlight lang="pascal"> var i: byte; ...") |
(→Example: Capitalized `Btye` for consistency. Condensed code making it easier to understand) |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
'''''property TActivePlayer.Alive: Boolean''''' | '''''property TActivePlayer.Alive: Boolean''''' | ||
− | + | Access mode: RW | |
==Description== | ==Description== | ||
− | + | If a player is alive or not. | |
==Example== | ==Example== | ||
<syntaxhighlight lang="pascal"> | <syntaxhighlight lang="pascal"> | ||
− | var i: | + | var i: Byte; |
begin | begin | ||
− | for i := 1 to 32 do | + | for i := 1 to 32 do |
− | + | Players[i].Alive := not Players[i].Alive; // causes player to die if alive, and respawn if dead | |
end; | end; | ||
</syntaxhighlight> | </syntaxhighlight> | ||
[[Category:TActivePlayer]] | [[Category:TActivePlayer]] |
Latest revision as of 14:54, 29 July 2013
property TActivePlayer.Alive: Boolean Access mode: RW
Description
If a player is alive or not.
Example
var i: Byte;
begin
for i := 1 to 32 do
Players[i].Alive := not Players[i].Alive; // causes player to die if alive, and respawn if dead
end;