count: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
[[Category:Scripting Commands OFP 1.46|C]] | [[Category:Scripting Commands OFP 1.46|C]] | ||
[[Category:Scripting Commands ArmA|C]] | [[Category:Scripting Commands ArmA|C]] | ||
Revision as of 11:45, 23 April 2006
condition count array
Operand types:
condition: String
array: Array
Type of returned value:
Description:
Counts elements in array for which given condition is true.
It is calculated as follows:
Set count to 0.
For each element of array assign element as _x and evaluate condition expression.
If true increase count.
Example:
"_x > 2" count [0, 1, 1, 2, 3, 3] ...... Result is 2
Comments:
Use this to calculate how many "M16" mags a soldier has left.
("_x == {M16}" count magazines soldier1)