Famousbasic13 10 Posted February 26, 2015 Hi there, I was wondering if anyone knows how to change the capacity of a Vest (That is from a mod). So for e.g - It can carry 2 Repair Kits instead of 1...? Regards T Share this post Link to post Share on other sites
Jackal326 1182 Posted February 26, 2015 (edited) When you define your vest look for the following code: class YourClassname: BaseClassname { author = "You"; scope = 2; picture = "\A3\characters_f\Data\UI\icon_V_plate_carrier_1_CA.paa"; displayName = "My cool vest"; model = "\A3\Characters_F\BLUFOR\equip_b_vest02"; class ItemInfo: ItemInfo { uniformModel = "\A3\Characters_F\BLUFOR\equip_b_vest02.p3d"; [color="#FF0000"][b] containerClass = "Supply140";[/b][/color] mass = whatever; armor = whatever; passThrough = likeacurry; }; }; That defines how much the vest can carry. Values go from 20 to 180 (I think) in increments of 10 Use the link that Eggi posted. Edited February 26, 2015 by Jackal326 Share this post Link to post Share on other sites
jshock 513 Posted February 26, 2015 This page may help: Nvm...Jackal beat me to it :p. Share this post Link to post Share on other sites
dscha 147 Posted February 26, 2015 https://community.bistudio.com/wiki/Arma_3_CfgVehicles_EMPTY Search for Ctrl+F -> "Supply" Share this post Link to post Share on other sites
Famousbasic13 10 Posted February 27, 2015 When you define your vest look for the following code: class YourClassname: BaseClassname { author = "You"; scope = 2; picture = "\A3\characters_f\Data\UI\icon_V_plate_carrier_1_CA.paa"; displayName = "My cool vest"; model = "\A3\Characters_F\BLUFOR\equip_b_vest02"; class ItemInfo: ItemInfo { uniformModel = "\A3\Characters_F\BLUFOR\equip_b_vest02.p3d"; [color="#FF0000"][b] containerClass = "Supply140";[/b][/color] mass = whatever; armor = whatever; passThrough = likeacurry; }; }; That defines how much the vest can carry. Values go from 20 to 180 (I think) in increments of 10 Use the link that Eggi posted. Where can I fine this? In the config.bin? Thanks for the link aswell Eggi! Share this post Link to post Share on other sites
dscha 147 Posted February 27, 2015 Yep. Tool #1: Grepwin Share this post Link to post Share on other sites