Jump to content

Recommended Posts

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

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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×