config greater greater name – Talk
Jump to navigation
Jump to search
_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",.....]