configFile: Difference between revisions
Jump to navigation
Jump to search
m (Text replacement - "({{arma3}} 1.24)" to "{{GVI|arma3|1.24}}") |
m (Text replacement - "\[\[[cC]ategory:[sS]cripting [cC]ommands\|[a-z A-Z 0-9_]+\]\]" to "") |
||
Line 49: | Line 49: | ||
{{GameCategory|arma1|Scripting Commands}} | {{GameCategory|arma1|Scripting Commands}} | ||
Revision as of 01:24, 5 February 2021
Description
- Description:
- Description needed
- Groups:
- Config
Syntax
- Syntax:
- Syntax needed
- Return Value:
- Return value needed
Examples
- Example 1:
_isMyClassActive = isClass (configFile / "CfgPatches" / "MyClass");
Additional Information
- See also:
- See also needed
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 Jul 19, 2014 - 20:08
- ffur2007slx2_5
-
1.24 It is recommended to use configClasses instead of BIS_fnc_getCfgSubClasses and BIS_fnc_uniqueClasses on subclasses collection or conditional selection.
_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;