Extended Character Stats

Extended Character Stats

8M Downloads

Avoidance, Miss of the Mob not Included

emrahe82 opened this issue ยท 6 comments

commented

Bug description

Miss chance of the mob is not added when calculating the avoidance percentage. Aim is to reach 102.4%, for not to get crushed by the bosses

As seen on screenshot (Shaman 60):
Block: 49.44 %
Dodge: 19.98 %
Parry: 14.44 %
Avoidance: 49.44+14.44+19.98 = 83.86 %
it had to be like ~ 98% (if miss of the mob had also been included).
but not added in the current calculation
it may be best to put a new tab called, such as "Enemy Miss"

Screenshots

Image

Version

EVS v4.1.0
Season Of Discovery

commented

I tried to reproduce but it's working. Are you on living flame server?

commented

ty for your attention. shaman is on Wild Growth EU (PVE)
i will have more detailed checks tomorrow and update this message

commented

If you want you can install DebugLog addon
put if DLAPI then DLAPI.DebugLog("ECS","%s",tostring(avoidance)) end between line 84 and line 85 in Modules\Data\Defense.lua
then in game you enable the addon and you type /dl to see the debug

commented

I figured it out. Its not the miss chance, its the parry chance thats missing:

Image

For shamans since we dont have any modifiers to our parry chance its the excact same as enemy miss chance:

Your chance to parry is based on the formula: % = 5% base chance + contribution from parry rating + contribution from talents + ((Defense skill - attacker's weapon skill) * 0.04)

The Debuglog confirms that after adding block chance to total avoidance, it doesnt add the parry chance.

I looked in the code, and this line of code, doesnt work for shamans:

if IsPlayerSpell(3127) then
    avoidance = avoidance + GetParryChance()

It seems that every other class, paladins, warrior, hunters, rogues gets parry, that have the spellid 3127. But shamans have to be diffrent with the parry spellid set to 18848.

Hope this helps to finding out the problem.

commented

Thank you very much

commented

Hey @emrahe82 thanks for reporting this and thanks @Rakii80 and @Alessandro-Barbieri for looking into what's causing it.

#350 will fix this (Thanks Alessandro ๐Ÿ‘๐Ÿป )