Multiple Orbat Factions

  1. 6 years ago

    Had a quick question. Is it possible to have 2 factions that have been made compatible in the ORBAT editor in the same mission? I'm getting a "CfgFactionClasses: Member already defined" error after I have copied both of my factions information and pasted it into the description. Is there a way to get around this so both of the factions work? (One of these factions is a Blufor and the other is a Opfor faction)

  2. Yes, you'll need to merge both CfgFactionClasses in to 1.

    So instead of

    class CfgFactionClasses {
        // everything for faction 1
    };
    
    class CfgFactionClasses {
        // everything for faction 2
    };

    it needs to be like

    class CfgFactionClasses {
        // everything for faction 1
        // everything for faction 2
    };
 

or Sign Up to reply!