Jump to content
Sign in to follow this  
Scheintot887

Creating new Faction doesnt work

Recommended Posts

Hey guys!

Im trying to add a new Faction to Bluefor but it doesnt work.

Config:

class CfgPatches {

   class ate_scout {
       units[] = {"USMC_Soldier_Light"};
       weapons[] = {};
       requiredVersion = 1.540000;
       requiredAddons[] = {"CACharacters", "CACharacters_E"};
   };
};

class CfgFactionClasses {

   class scout {
       displayName = "US Scouts";
       priority = 1;
       side = "TWest";
   };
};

class CfgVehicleClasses {

   class AVS {
       displayName = "Scout Units";
       faction = "scout";
   };
};
class USMC_Soldier_Base;
class USMC_Soldier_Light;
class USMC_Soldier : USMC_Soldier_Base {

       class USMC_Soldier_Light {
           displayName = "Scout Riflemen";
           faction = "scout";
           vehicleClass = "AVS";
       };

   };

};

There is no new faction in the editor.

I just try to add already available default soldiers to a new, own faction... so there is nothing inside the PBO, besides the config.bin.

Cant see the mistake. Sry for my english.

Edited by Scheintot887

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  

×