• 🏆 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!

How to use dps calculator or unit tool 2.0?

Status
Not open for further replies.
Level 3
Joined
Jan 19, 2010
Messages
29
I upload this thread in world editor help zone because nobody answer on my question in tools help zone.I dont know how to use dps calculator or unit tool.Can anybody give me full instruction how use it?
 
Level 18
Joined
Jan 21, 2006
Messages
2,552
I have no idea, but why would you even need to. DPS is simply a ratio of how much damage they do how quickly.

For example, if my unit deals 5-10 damage and attacks at a rate of 0.35 seconds, then:

Code:
minDamagePerSecond = (1/0.35) * 5
maxDamagePerSecond = (1/0.35) * 10

The minimum damage is derived from the unit's base damage plus the number of dice. The maximum damage is the unit's damage base added to the number of dice times the number of sides per dice.

In order to achieve a damage of 5 - 15, you could do it a few ways, here's one:
  • Base: 4
  • Dice #: 1
  • Sides #: 11

So, to break it down for you:

Code:
minDamagePerSecond = (1 / attackCooldown) * (baseDamage + diceAmount)
maxDamagePerSecond = (1 / attackCooldown) * (baseDamage + (diceAmount * sidesPerDice))

I personally don't see any use to these tools.
 
Status
Not open for further replies.
Top