ZNorQ 0 Posted June 20, 2013 I want to add specific items to specific containers (vest, uniform & backpack), but it seems to me that you can only add items and it is put in which ever container that has free space. Is this correct, or am I missing something? Kenneth aka ZNorQ. Ups, see "items" in title spelled wrong.. Oo Share this post Link to post Share on other sites
samatra 85 Posted June 20, 2013 You can only do this with backpack: http://community.bistudio.com/wiki/unitBackpack its not possible to specify where item will be added for uniform or vest. Share this post Link to post Share on other sites
thdman1511 4 Posted June 21, 2013 you will need to organise a load out script for each container. Thats the only way I know how to put in custom loadout. Jester814 has a great youtube tutorial on custom loadouts and gears, search arma 3 custom loadout and custom gears in youtube and you should be able to find it. I have only used a script on supply crates and havent had any real problems with it. Share this post Link to post Share on other sites
kahna 13 Posted June 21, 2013 You can setup a loadout so that the game will do it in order. For example: removeallweapons this; removeallitems this; removevest this; this additem "FirstAidKit"; (This would fill into the uniform first) this addvest "V_PlateCarrier1_cbr"; this addmagazine "HandGrenade"; (This would fill into the vest if the uniform is full) this addweapon "arifle_MX_F"; this addprimaryweaponitem "optic_Hamr"; this addmagazine "30Rnd_65x39_caseless_mag_Tracer"; this addweapon "hgun_P07_F"; this addmagazine "16Rnd_9x21_Mag"; this addbackpack "Whatever"; (Once your uniform and vest are full everything would go into the backpack) this additem "FirstAidKit"; this additem "ItemGPS"; this assignitem "ItemGPS"; this additem "Rangefinder"; this assignitem "Rangefinder"; Share this post Link to post Share on other sites
aeroson 8 Posted June 21, 2013 Or you can use placeholders, just like here Share this post Link to post Share on other sites
ZNorQ 0 Posted June 22, 2013 Followed your tips, guys, just what I needed - thanks. However, I hope BIS gives us a couple of script-commands that makes this easier in the future. ZNorQ Share this post Link to post Share on other sites