Jump to content
Sign in to follow this  
inlesco

Arma CfgSounds / CfgMusic class generator?

Recommended Posts

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

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

  • Like 1

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×