I'm getting in to modding recently and tried to make a faction. Most of the info I need is available on the Arma 3 wiki, but I can't really find how to add items to uniforms/vests. I know you can add items to persons with:
items[] = {}
and you can add items to a backpack with:
class TransportMagazines
{
MAG_XX(100Rnd_65x39_caseless_mag,4);
MAG_XX(100Rnd_65x39_caseless_mag_Tracer,2);
MAX_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);
};
Is there a also a way to do this for uniforms/vests?