Jump to content
Sign in to follow this  
swtx

adding weapon accessories and items to the backpack in the config..

Recommended Posts

So I'm creating a custom unit with additional weapon accessories and additional ammo.  How do I add the items I want each unit to carry in their backpacks?  How do I include optics and silencers already mounted on weapons in my custom config.

 

Thx in advance for your help.

 

Scott 

Share this post


Link to post
Share on other sites

So I'm creating a custom unit with additional weapon accessories and additional ammo.  How do I add the items I want each unit to carry in their backpacks?  How do I include optics and silencers already mounted on weapons in my custom config.

 

Thx in advance for your help.

 

Scott 

I would imagine it would be as simple as getting their class list name and adding them to the bags contents.

 

https://community.bistudio.com/wiki/Arma_3_Characters_And_Gear_Encoding_Guide#Backpack_configuration

 

All you need to know is there ;)

 

/// Asst. Autorifleman's backpack config ///

 

class cfgVehicles

{

class B_Kitbag_rgr;

class B_Kitbag_rgr_AAR: B_Kitbag_rgr

{

scope = 1; // There is no need for this bag to appear in the editor, Virtual Arsenal, or Zeus.

class TransportMagazines

{

mag_xx(100Rnd_65x39_caseless_mag,4);

mag_xx(100Rnd_65x39_caseless_mag_Tracer,2);

mag_xx(130Rnd_338_Mag,2);

};

class TransportItems

{

item_xx(optic_tws_mg,1);

item_xx(bipod_01_F_snd,1);

item_xx(muzzle_snds_338_sand,1);

item_xx(muzzle_snds_H_SW,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  

×