config greater greater name – Talk
Jump to navigation
Jump to search
Posted on Jul 19, 2014 - 20:08
ffur2007slx2_5
(ArmA3 1.24) It is recommended to use configClasses instead of BIS_fnc_getCfgSubClasses and BIS_fnc_uniqueClasses on subclasses collection or conditional selection.
Posted on Apr 06, 2016 - 08:28
Pierre MGI
The post from ffur2007slx2_5 above is not exact.
Killzone Kid (talk | contribs) (→unrelated notes from command page: new section) |
Lou Montana (talk | contribs) m (Text replacement - "<dd class="notedate">Posted on ([^<>]+) " to "<dd class="notedate">Posted on $1</dd> ") |
||
Line 2: | Line 2: | ||
<!-- Note Section BEGIN --> | <!-- Note Section BEGIN --> | ||
<dd class="notedate">Posted on Jul 19, 2014 - 20:08 | <dd class="notedate">Posted on Jul 19, 2014 - 20:08</dd> | ||
<dt class="note">'''[[User:ffur2007slx2_5|ffur2007slx2_5]]'''<dd class="note"> | <dt class="note">'''[[User:ffur2007slx2_5|ffur2007slx2_5]]'''<dd class="note"> | ||
(ArmA3 1.24) It is recommended to use [[configClasses]] instead of [[BIS_fnc_getCfgSubClasses]] and [[BIS_fnc_uniqueClasses]] on subclasses collection or conditional selection. | (ArmA3 1.24) It is recommended to use [[configClasses]] instead of [[BIS_fnc_getCfgSubClasses]] and [[BIS_fnc_uniqueClasses]] on subclasses collection or conditional selection. | ||
Line 27: | Line 27: | ||
</code> | </code> | ||
<dd class="notedate">Posted on Apr 06, 2016 - 08:28 | <dd class="notedate">Posted on Apr 06, 2016 - 08:28</dd> | ||
<dt class="note">'''[[Pierre MGI]]'''<dd class="note"> | <dt class="note">'''[[Pierre MGI]]'''<dd class="note"> | ||
The post from ffur2007slx2_5 above is not exact. | The post from ffur2007slx2_5 above is not exact. |
Revision as of 01:16, 30 January 2021
_faces = "true" configClasses (configFile >> "Cfgfaces");
//same as: _faces = (configfile >> "CfgFaces") call BIS_fnc_getCfgSubClasses;
//Extract all animals:
animals = "((configName _x) isKindOf 'animal')" configClasses (configFile >> "CfgVehicles");
/*same as:
aniamls = [];
[(configFile >> "CfgVehicles"),{
if ((configName _this) isKindOf “animal”) then {
animals set [ count animals, _this]
}
}
] call BIS_fnc_uniqueClasses;*/
Return nested subclasses, currently still BIS_fnc_returnChildren
//Return all nested config classes.
[(configFile >> "CfgFaces"),1, true, true ] call BIS_fnc_returnChildren;
"true" configClasses (configFile >> "Cfgfaces"); will return an array of classes.
[config.bin/CfgFaces/Kerry,...]
(configfile >> "CfgFaces") call BIS_fnc_getCfgSubClasses; will return an array of strings.
["Kerry",.....]