countType: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\[\[Category:[ _]?Scripting[ _]Commands[ _]Arma[ _]3(\|.*)]]" to "{{GameCategory|arma3|Scripting Commands}}")
m (Text replacement - "Killzone Kid" to "Killzone_Kid")
 
(46 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Command|Comments=
{{RV|type=command
____________________________________________________________________________________________


| ofp |Game name=
|game1= ofp
|version1= 1.00


|1.00|Game version=
|game2= ofpe
|version2= 1.00


|arg= global |Multiplayer Arguments=
|game3= arma1
|version3= 1.00


|gr1= Object Detection |GROUP1=
|game4= arma2
____________________________________________________________________________________________
|version4= 1.00


| Count how many objects in the array are of given type. This command also works with parent classes like "Air", "Tank", and "Car". For a full class reference see [[CfgVehicles|Classes]]. |DESCRIPTION=
|game5= arma2oa
____________________________________________________________________________________________
|version5= 1.50


| type '''countType''' objects |SYNTAX=
|game6= tkoh
|version6= 1.00


|p1= type: [[String]] - class type |PARAMETER1=
|game7= arma3
|version7= 0.50


|p2= objects: [[Array]] - array of [[Object]]s |PARAMETER2=
|arg= global


| [[Number]] |RETURNVALUE=
|gr1= Object Detection
____________________________________________________________________________________________
 
|x1= <code>_count = "Tank" [[countType]] [[list]] _triggerOne;</code> |EXAMPLE1=


|x2= <code>_count = "B_medic_F" [[countType]] [[units]] [[player]];</code> |EXAMPLE2=
|descr= Count how many objects in the array are of given type. This command also works with parent classes like "Air", "Tank", and "Car". For a full class reference see [[CfgVehicles|Classes]].
____________________________________________________________________________________________


| [[count]], [[isKindOf]], [[typeOf]], [[countFriendly]], [[countEnemy]], [[countSide]], [[countUnknown]] |SEEALSO=
|s1= type [[countType]] objects


|p1= type: [[String]] - class type
|p2= objects: [[Array]] - array of [[Object]]s
|r1= [[Number]]
|x1= <sqf>_count = "Tank" countType list _triggerOne;</sqf>
|x2= <sqf>_count = "B_medic_F" countType units player;</sqf>
|seealso= [[count]] [[isKindOf]] [[typeOf]] [[countFriendly]] [[countEnemy]] [[countSide]] [[countUnknown]]
}}
}}


<h3 style="display:none">Notes</h3>
<dl class="command_description">
<dl class="command_description">
<!-- Note Section BEGIN -->
 
<dd class="notedate">Posted on April 23, 2007 - 16:34
<dt></dt>
<dt class="note">[[User:Kronzky|Kronzky]]
<dd class="notedate">Posted on 2007-04-23 - 16:34</dd>
<dt class="note">[[User:Kronzky|Kronzky]]</dt>
<dd class="note">This command can be used on the whole [[ArmA: CfgVehicles|hierarchical class tree]] (i.e. when checking a [[ArmA:_Vehicles#Wheeled|HMMWV]], one could test for "HMMWV50", "Car", "LandVehicle", etc.)
<dd class="note">This command can be used on the whole [[ArmA: CfgVehicles|hierarchical class tree]] (i.e. when checking a [[ArmA:_Vehicles#Wheeled|HMMWV]], one could test for "HMMWV50", "Car", "LandVehicle", etc.)
<!-- Note Section END -->
</dl>


<h3 style="display:none">Bottom Section</h3>
<dt></dt>
 
<dd class="notedate">Posted on 2016-05-04 - 13:30 (UTC)</dd>
[[Category:Scripting Commands|COUNTTYPE]]
<dt class="note">[[User:Killzone_Kid|Killzone_Kid]]</dt>
[[Category:Scripting Commands OFP 1.99|COUNTTYPE]]
[[Category:Scripting Commands OFP 1.96|COUNTTYPE]]
[[Category:Scripting Commands OFP 1.46|COUNTTYPE]]
{{GameCategory|arma1|Scripting Commands}}
[[Category:Scripting Commands Arma 2|{{uc:{{PAGENAME}}}}]]
{{GameCategory|arma3|Scripting Commands}}
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]]
 
<!-- CONTINUE Notes -->
<dl class="command_description">
<dd class="notedate">Posted on May 4, 2016 - 13:30 (UTC)</dd>
<dt class="note">[[User:Killzone Kid|Killzone Kid]]</dt>
<dd class="note">To complement Kronzky's note, if one needs to count exact types, [[countType]] is not suitable for this, use [[count]] instead:
<dd class="note">To complement Kronzky's note, if one needs to count exact types, [[countType]] is not suitable for this, use [[count]] instead:
<code>_count = {[[typeOf]] _x == "B_medic_F"} [[count]] [[units]] [[player]];</code>
<sqf>_count = {typeOf _x == "B_medic_F"} count units player;</sqf>
</dd>
</dd>
</dl>
</dl>
<!-- DISCONTINUE Notes -->

Latest revision as of 14:48, 12 March 2024

Hover & click on the images for description

Description

Description:
Count how many objects in the array are of given type. This command also works with parent classes like "Air", "Tank", and "Car". For a full class reference see Classes.
Groups:
Object Detection

Syntax

Syntax:
type countType objects
Parameters:
type: String - class type
objects: Array - array of Objects
Return Value:
Number

Examples

Example 1:
_count = "Tank" countType list _triggerOne;
Example 2:
_count = "B_medic_F" countType units player;

Additional Information

See also:
count isKindOf typeOf countFriendly countEnemy countSide countUnknown

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
Posted on 2007-04-23 - 16:34
Kronzky
This command can be used on the whole hierarchical class tree (i.e. when checking a HMMWV, one could test for "HMMWV50", "Car", "LandVehicle", etc.)
Posted on 2016-05-04 - 13:30 (UTC)
Killzone_Kid
To complement Kronzky's note, if one needs to count exact types, countType is not suitable for this, use count instead:
_count = {typeOf _x == "B_medic_F"} count units player;