O.Languedoc 67 Posted August 15, 2017 Hi guys, Is there a chart somewhere that converts KG or Lbs in "arma mass/weight"? we are trying to make are weapons realistic... but... cant figure out what do enter. Cheers Share this post Link to post Share on other sites
soldierman 16 Posted August 15, 2017 We use a Macro to convert from KG to arma's mass value so that it shows the correct weight when ACE is being used. #define WEIGHT_DECIMAL_PLACES 2 #define KG_TO_MASS(WEIGHT_IN_KILOS) __EVAL ( round (((WEIGHT_IN_KILOS * 0.1) * (1*2.2046) * 100) * (10 ^ WEIGHT_DECIMAL_PLACES) ) / (10 ^ WEIGHT_DECIMAL_PLACES) ) This should give you what you need Share this post Link to post Share on other sites
O.Languedoc 67 Posted August 18, 2017 thx. i'll look into it Share this post Link to post Share on other sites