Real bug this time, b24 Dual Weapon Training bug

Where bugs go to lie down and rest

Moderator: Moderator

Post Reply
Message
Author
Mushroomhermit
Thalore
Posts: 159
Joined: Wed Jul 07, 2010 4:11 pm
Location: The Intardnet

Real bug this time, b24 Dual Weapon Training bug

#1 Post by Mushroomhermit »

This skill increases the offhand damage % to 155% of main hand damage.

So instead of this:

0/5 50% OH
1/5 54% OH
2/5 60% OH
3/5 66% OH
4/5 75% OH
5/5 85% OH

You get:

0/5 50% OH
1/5 154% OH
2/5 160% OH
3/5 166% OH
4/5 175% OH
5/5 185% OH

This also might help to explain why rogue enemies hit so &^%#ing hard.

edit

LN 117 of class/interface/combat.lua is

offmult = (mult or 1) / (2 - (math.max(self:getTalentLevel(Talents.T_DUAL_WEAPON_TRAINING), 8) / 6))

Should probably be

offmult = (mult or 1) / (2 - (math.max(self:getTalentLevel(Talents.T_DUAL_WEAPON_TRAINING), 8) / 6)) - 1
darkgod wrote:dixed

darkgod
Master of Eyal
Posts: 10750
Joined: Wed Jul 24, 2002 9:26 pm
Location: Angolwen
Contact:

Re: Real bug this time, b24 Dual Weapon Training bug

#2 Post by darkgod »

fixed
[tome] joylove: You can't just release an expansion like one would release a Kraken XD
--
[tome] phantomfrettchen: your ability not to tease anyone is simply stunning ;)

Dervis
Wyrmic
Posts: 263
Joined: Thu Oct 14, 2010 9:58 am

Re: Real bug this time, b24 Dual Weapon Training bug

#3 Post by Dervis »

I might be reading this wrong, but shouldn't it be:

Code: Select all

offmult = (mult or 1) / (2 - (math.min(self:getTalentLevel(Talents.T_DUAL_WEAPON_TRAINING), 8) / 6))
Math.max returns the highest of two values so it'd be working opposite from what you'd want. And that probably explains why off-hand damage is so high.

darkgod
Master of Eyal
Posts: 10750
Joined: Wed Jul 24, 2002 9:26 pm
Location: Angolwen
Contact:

Re: Real bug this time, b24 Dual Weapon Training bug

#4 Post by darkgod »

Yes that'st he fix I used
[tome] joylove: You can't just release an expansion like one would release a Kraken XD
--
[tome] phantomfrettchen: your ability not to tease anyone is simply stunning ;)

Post Reply