config greater greater name: Difference between revisions
Jump to navigation
Jump to search
(note modified & see also) |
No edit summary |
||
Line 63: | Line 63: | ||
[[Category:Scripting Commands Arma 3|#]] | [[Category:Scripting Commands Arma 3|#]] | ||
[[Category:Command_Group:_System_Commands|#]] | [[Category:Command_Group:_System_Commands|#]] | ||
{{subst:Add new note/construct| | |||
<!-- | |||
The post from ffur2007slx2_5 above is not exact. | |||
"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",.....] | |||
}} |
Revision as of 19:26, 6 April 2016
Description
- Description:
- Returns subentry of config entry with given name. Identical to config/name.
- Groups:
- Uncategorised
Syntax
Examples
- Example 1:
configFile >> "CfgVehicles";
Additional Information
- See also:
- configFileconfig/nameconfigNamecountgetTextisArrayisClassisNumberisTextselectconfigClasses
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
Notes
- 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.
_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;
Bottom Section
{{subst:Add new note/construct|