Jump to content
Sign in to follow this  
massi

Add uniform and vest to backpack trough config

Recommended Posts

Hi, since the Beta the way to add vest and uniform to backpack trough addon config do not work anymore.

This is an example of how it worked in Alpha:

class TransportItems {

class _xx_Medikit {

name = "Medikit";

count = 1;

};

class _xx_FirstAidKit {

name = "FirstAidKit";

count = 10;

};

class _xx_H_mas_uk_pro_ht {

name = "H_mas_uk_pro_ht";

count = 1;

};

class _xx_U_mas_uk_B_CombatUniform_mcam_vest {

name = "U_mas_uk_B_CombatUniform_mcam_vest";

count = 1;

};

class _xx_V_mas_uk_ChestrigB_rgr {

name = "V_mas_uk_ChestrigB_rgr";

count = 1;

};

};

but now the backpack show no uniform and vest in it.

Do somebody know how to change the code in order to get those items back again inside backpacks (trough addon config, not script) ?

Thanks a lot ;)

massi

Share this post


Link to post
Share on other sites

Hi, i had the same issue and worked around it by doing this:

class B_AssaultPack_rgr_Medic;
class HH_Backpack_CM: B_AssaultPack_rgr_Medic
{
	displayname = "3 Day Tactical Backpack (Black)";
	model = "\A3\weapons_f\Ammoboxes\bags\Backpack_Small";
	hiddenSelections[] = {"camo"};
	hiddenSelectionsTextures[] = {"\A3\weapons_f\ammoboxes\bags\data\backpack_small_blk_co.paa"};
};

I took a medic backpack that already had the items i needed and then changed its model and textures.

I am not sure if it works with custom content too but maybe there's a way around.

I also tried with other third party addons and all seem to have this problem with "class trasportitems", don't know why though.

Ciao!

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  

×