• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

Warcraft 3 Armor

NOTE: I wrote this in C#.

This tool calculates armor based off of three values: percentage, armor, and modifier.

The equation for finding percentage is

percentage = (armor * modifier) / ( 1 + armor * modifier )

Armor and Modifier

armor = percentage / (modifier - percentage * modifier)
modifier = percentage / (armor - percentage * armor)

Swap changes which field you want to find. The field you are currently finding out is gray.

Contact - [email protected]

Keywords:
Warcraft, 3, III, Armor, Calculator
Contents

Warcraft 3 Armor (Binary)

Reviews
15:58, 22nd Dec 2009 TriggerHappy: I suppose this could be useful, but seriously you can just find this is out with a calculator.

Moderator

M

Moderator

15:58, 22nd Dec 2009
TriggerHappy:

I suppose this could be useful, but seriously you can just find this is out with a calculator.
 
Top