Jump to content
ardvarkdb

Trying to Replace Apex CTRG Uniforms

Recommended Posts

Just wondering if anyone has had any luck replacing the CTRG uniforms in the new Apex expansion?

 

I'm using the following code, which works on the Arma 3 CTRG, but doesn't seem to work on the Apex ones. Is it because of the encrypted pbos?

This works and replaces the default CTRG with another uniform

class U_B_CTRG_1 : Uniform_Base {

		class ItemInfo : UniformItem 
		{
		uniformClass = "Ard_AOR2_A";
		};
	};

This does not work when trying to replace the Apex CTRG

	class U_B_CTRG_Soldier_F : Uniform_Base {

		class ItemInfo : UniformItem 
		{
		uniformClass = "Ard_AOR2_A";
		};
	};

Does anyone have any ideas on how to get this working? Never been a fan of the CTRG camo and I'd love to play through the Apex campaign with something else on their uniforms. I made another replacement that replaces the Apex CTRG units placed via the editor and that works, but during the campaign it does not.

 

Thanks!

Share this post


Link to post
Share on other sites

You would need to add the cfgPatches classname(s) of the APEX Characters/Uniforms to the requiredAddons array of your replacement config's cfgPatches section as well.

  • Like 3

Share this post


Link to post
Share on other sites

Ah, I was missing that part. Thanks Sam!

 

FYI, adding "A3_characters_f_exp" to the cfgpatches required addons did the trick.

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

×