• This is a read only backup of the old Emudevs forum. If you want to have anything removed, please message me on Discord: KittyKaev

some calcs

AlexeWarr

Epic Member
Ok guys so I need to find some kind of formula for:

I saw on a server they have 5 weapon levels, such LV.1 Torch of the Damned, LV.2 , LV.3 ,LV.4, LV.5 ..

Code:
WoW.Wiki dps formula: ((Min Weapon Damage + Max Weapon Damage) / 2) / Weapon Speed

The LV.1 [Torch of the Damned] weapon damage starts with:

min.dmg 24684 max.dmg 34833 , dps = 7831.2
Example: (24684 + 34833) / 2) / 3.80<-(weapon attack speed) = 7831.2

The LV.2 [Torch of the Damned] weapon damage starts with:

min.dmg 26622 max.dmg 36771, dps = 8341.2


The LV.3 [Torch of the Damned] weapon damage starts with:

min.dmg 28560 max.dmg 38709, dps = 8851.2

What I discovered is each weapon level's dps increases with +510, for example:
> LV.2's dps [LV.1 DPS]7831.2+510=8341.2
> LV.3's dps [LV.2 DPS]8341.2+510=8851.2


Do you know what formula they used to increase each weapon's dps to result +510 when you only have to use (min.dmg, max.dmg, weapon speed) ?
 

Tommy

Founder
Ok guys so I need to find some kind of formula for:

I saw on a server they have 5 weapon levels, such LV.1 Torch of the Damned, LV.2 , LV.3 ,LV.4, LV.5 ..

Code:
WoW.Wiki dps formula: ((Min Weapon Damage + Max Weapon Damage) / 2) / Weapon Speed

The LV.1 [Torch of the Damned] weapon damage starts with:

min.dmg 24684 max.dmg 34833 , dps = 7831.2
Example: (24684 + 34833) / 2) / 3.80<-(weapon attack speed) = 7831.2

The LV.2 [Torch of the Damned] weapon damage starts with:

min.dmg 26622 max.dmg 36771, dps = 8341.2


The LV.3 [Torch of the Damned] weapon damage starts with:

min.dmg 28560 max.dmg 38709, dps = 8851.2

What I discovered is each weapon level's dps increases with +510, for example:
> LV.2's dps [LV.1 DPS]7831.2+510=8341.2
> LV.3's dps [LV.2 DPS]8341.2+510=8851.2


Do you know what formula they used to increase each weapon's dps to result +510 when you only have to use (min.dmg, max.dmg, weapon speed) ?


Bonus damage perhaps?
 
Top