Isaacdevil 0 Posted June 22, 2020 I've tried everything related to changing the mass field via a CfgWeapons patch of the ItemInfo class but nothing has been working. Any way to change the mass? Share this post Link to post Share on other sites
gaverio 100 Posted June 24, 2020 Don't know how to make a script, but a config replacement should look like this class CfgPatches { class your_new_mass { units[] = {}; requiredVersion = 0.1; requiredAddons[] = {"A3_Characters_F"}; }; }; class CfgWeapons { class UniformItem; class Uniform_Base; class U_B_CombatUniform_mcam: Uniform_Base { class ItemInfo: UniformItem { mass = 40; // change this to desired mass }; }; }; Share this post Link to post Share on other sites