Difference between revisions of "TActivePlayer.Kills"

From Soldat Community Wiki
Jump to: navigation, search
(Created page with " '''''property TActivePlayer.Kills: Integer''''' Acess mode: RW ==Description== How many kills a player has. ==Example== <syntaxhighlight lang="pascal"> writeLn('Player ...")
 
(Example)
Line 6: Line 6:
 
==Example==
 
==Example==
 
<syntaxhighlight lang="pascal">
 
<syntaxhighlight lang="pascal">
  writeLn('Player with ID 1 has ' + inttostr(Players[1].Kills) + ' kills! :ooo');
+
writeLn('Player with ID 1 has ' + inttostr(Players[1].Kills) + ' kills! :ooo');
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 19:59, 26 June 2013

property TActivePlayer.Kills: Integer
 Acess mode: RW

Description

How many kills a player has.

Example

writeLn('Player with ID 1 has ' + inttostr(Players[1].Kills) + ' kills! :ooo');