Arma 3
Not enough ratings
Armor Modifier - ACE
2
   
Award
Favorite
Favorited
Unfavorite
Data Type: Mod
File Size
Posted
Updated
137.491 KB
Feb 9, 2023 @ 5:33am
Mar 26 @ 1:06pm
6 Change Notes ( view )

Subscribe to download
Armor Modifier - ACE

Description
Armor Modifier - ACE is required on all clients and server and adds the ability to tweak armor effectiveness. This is not an official ACE mod.

CBA Settings
Inputs are arrays of numbers, in the form of: '[armorMultiplier, minimumArmor, maximumArmor]'
  • armorMultiplier: Interval: '[0.001 - infinite]'. If '=1', this setting has no effect.
  • minimumArmor: Interval: '[0 - infinite]'. If '<1', this setting has no effect.
  • maximumArmor: Interval: '[0 - infinite]'. If '<1', this setting has no effect.

No settings depend of each other, except for that that 'minimumArmor' should be smaller or equal than 'maximumArmor'.

These settings are available for players and AI separately:
  • Hitpoint damage reduction - head: Allows the modification of damage reduction on head hitpoints.
  • Hitpoint damage reduction - chest: Allows the modification of damage reduction on chest hitpoints.
  • Hitpoint damage reduction - limb: Allows the modification of damage reduction on all limb hitpoints.

If mission makers wish to set coefficients on individual units, you can use the following:
// For head coefficients _unit setVariable ["armor_modifier_ace_main_hitPointMultiplier_head", [armorMultiplier, minimumArmor, maximumArmor], true]; // For chest coefficients _unit setVariable ["armor_modifier_ace_main_hitPointMultiplier_chest", [armorMultiplier, minimumArmor, maximumArmor], true]; // For limb coefficients _unit setVariable ["armor_modifier_ace_main_hitPointMultiplier_limb", [armorMultiplier, minimumArmor, maximumArmor], true];

Examples
  • If Player hitpoint damage reduction - chest is set to '[10, 0, 0]', it means that you take a 10th of the damage to the chest.
  • If Player hitpoint damage reduction - chest is set to '[1, 10, 0]', it means that the minimum chest armor you have is 10. This means that if you have chest armor below 10, it will act as if you had 10 chest armor hitpoints and reduce the damage accordingly.
  • If Player hitpoint damage reduction - chest is set to '[0.1, 10, 0]', it means that the minimum chest armor you have is 10 and you will take 10 times the damage. This means that if you have chest armor below 10, it will act as if you had 10 chest armor hitpoints and reduce the damage accordingly. Furthermore, it will multiply the damage by 10.

Warning
This mod might conflict with other mods. If you find an incompatibility, please report it.

List of known incompatibility:

Links

Credit

License
See LICENSE.
25 Comments
johnb43  [author] Mar 26 @ 1:17pm 
I use ACE functions, which take passThrough is taken into account.
Zhasik Mar 26 @ 1:15pm 
"Armor" means armor value from vest configs?
passThrough is ignored?
johnb43  [author] Jan 1 @ 2:47pm 
@xKSAx Please read the instructions on the workshop page.
xKSAx Jan 1 @ 2:30pm 
i put everything 0.0.1 but not always one shot one kill dose the mod load order have something to do with that
johnb43  [author] Dec 23, 2023 @ 5:19am 
@xKSAx Almost certainly, but I'm not sure. How is the description above not clear on achieving that?
xKSAx Dec 23, 2023 @ 3:05am 
is there a way to make one shot one kill?
Raio Oct 29, 2023 @ 2:23pm 
Updated <3
Alexgardien Oct 22, 2023 @ 5:27pm 
Thanks for the update
[S.C.] Raptoid Oct 19, 2023 @ 6:36pm 
Thank you for the quick fix, this mod is a life saver.
Reticuli Sep 3, 2023 @ 8:50pm 
Sorry, I thought you were talking about needing to change values in something rather than sliders and values in CBA options.

Sounds like you're saying the stuff above with writing out values is for custom missions.

Your use of minimums also sounds different, like so that everyone has a minimum value of armor, rather than the other guy which does not buff your armor unless the cumulative amount on that body part is above a certain threshold. That would be under his Base Armor value, I guess.