Difference between revisions of "TActivePlayer.Grenades"
(Created page with " '''''property TActivePlayer.Grenades: Byte''''' Access mode: R ==Description== Current amount of a player's grenades. Category:TActivePlayer") |
|||
Line 4: | Line 4: | ||
Current amount of a player's grenades. | Current amount of a player's grenades. | ||
+ | ==Example== | ||
+ | <syntaxhighlight lang="pascal"> | ||
+ | //snippet from M79 Coop Climb's code | ||
+ | for s := 1 to 32 do if Players[s].Active then if Players[s].Alive then | ||
+ | if Players[s].Grenades < 4 then GiveBonus(s,4); | ||
+ | </syntaxhighlight> | ||
[[Category:TActivePlayer]] | [[Category:TActivePlayer]] |
Revision as of 23:40, 30 June 2013
property TActivePlayer.Grenades: Byte Access mode: R
Description
Current amount of a player's grenades.
Example
//snippet from M79 Coop Climb's code
for s := 1 to 32 do if Players[s].Active then if Players[s].Alive then
if Players[s].Grenades < 4 then GiveBonus(s,4);