Difference between revisions of "TActivePlayer.Kills"
(Created page with " '''''property TActivePlayer.Kills: Integer''''' Acess mode: RW ==Description== How many kills a player has. ==Example== <syntaxhighlight lang="pascal"> writeLn('Player ...") |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
'''''property TActivePlayer.Kills: Integer''''' | '''''property TActivePlayer.Kills: Integer''''' | ||
− | + | Access mode: RW | |
==Description== | ==Description== | ||
How many kills a player has. | How many kills a player has. | ||
Line 6: | Line 6: | ||
==Example== | ==Example== | ||
<syntaxhighlight lang="pascal"> | <syntaxhighlight lang="pascal"> | ||
− | + | writeLn('Player with ID 1 has ' + inttostr(Players[1].Kills) + ' kills! :ooo'); | |
</syntaxhighlight> | </syntaxhighlight> | ||
+ | [[Category:TActivePlayer]] |
Latest revision as of 20:41, 26 June 2013
property TActivePlayer.Kills: Integer Access mode: RW
Description
How many kills a player has.
Example
writeLn('Player with ID 1 has ' + inttostr(Players[1].Kills) + ' kills! :ooo');