inlesco 233 Posted December 27, 2014 I'm looking for a CfgSounds and CfgMusic class and their subclass generator. Is there one? The task at hand here is to include many different custom sounds for in-game use. Sure, the task can be automated, so I'm on the lookout for solutions. Thanks. Share this post Link to post Share on other sites
dreadedentity 278 Posted December 27, 2014 Yes there is both a CfgSounds and CfgMusic. You could use BIS_fnc_getCfgSubClasses, if you were so inclined, to return all of the selections using some code not unlike: _allSounds = (configFile >> "CfgSounds") call BIS_fnc_getCfgSubClasses; _allMusic = (configFile >> "CfgMusic") call BIS_fnc_getCfgSubClasses; Let me know if that helps, it's still pretty vague what exactly you want 1 Share this post Link to post Share on other sites