• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.
  • It's time for the first HD Modeling Contest of 2025. Join the theme discussion for Hive's HD Modeling Contest #7! Click here to post your idea!

Dps

Status
Not open for further replies.
Level 21
Joined
Dec 9, 2007
Messages
3,096
I've seen those tools for calculating the damage per second, and I am very confused by the results.

Isn't the formula like...
[ Base Damage + ( Damage Number of Dice + Damage Sides per Die ) / 2 ] / Attack Speed * Number of targets to hit
:confused:

For example: [ 5 + ( 1 + 2 ) / 2 ] / 1.5 * 1 = ( 5 + 1.5 ) * 1.5 = 6.5 / 1.5 = 4.(3) which is correct in my opinion.

(Tell me if I am wrong and show me the right formula, please!)
 
Level 12
Joined
Apr 15, 2008
Messages
1,063
No way, "sides per die" must be multiplied by "number of dice". The average die roll is ("sides per die"+1)/2, therefore average attack damage is [base damage + "number of dice"+("sides per die"+1)/2] and the entire formula:
Code:
[ Base Damage + Damage Number of Dice*(Damage Sides per Die+1)/2 ] / Attack Cooldown * Number of targets to hit
 
Level 12
Joined
Apr 15, 2008
Messages
1,063
Hmm... With this values, you attack for 6-7 (5 + 1 die of 1-2) every 1.5 seconds...that means in 3 seconds you make two attacks, one for 6 and the other one for 7 damage. That makes 13 damage in 3 seconds, 4.3 dps.

Vercas's formula will work for 1 die, the formula will be same then. 1*(2+1) is same as 1+2. (number of dice, sides per die )
 
Status
Not open for further replies.
Top