Just for clarification, I want to reduce the number of required addons by containing all units in one addon, but I want to organize them in a way that, from your comments, does not appear feasible. Is it possible to break down the class further, i.e.:
class cfgPatches
{
class adm_units
{
class blufor
{
units[]={};
weapons[]={};
};
class opfor
{
units[]={};
weapons[]={};
};
requiredaddons[]={};
requiredversion=1.90
};
};
I structured this wit units and weapons internal to the sub-sub class and the others as a being vital to the sub-class. Does that make sense? I guess it couldgo either way, but then again, I don't know.
The other alternative, I guess would be to modify an entire BIN file, but I'd rather not do that. Let me know what you think.
Thanks,
ADM