I would love a Blue post reply for this one –
Did S2 change the M+ rating formula? The original formula has been documented fairly extensively in a few places, as an example:
… and as of DF S1, they tweaked the formula a bit to add 2 points for each level over +10, as shown here:
I have a WeakAura that does these rough calculations and helps me figure out which dungeon I should run and a rough guess of how many points I’d gain for running a specific dungeon at a specific level. The values in it seemed to track closely to actual achieved scores, but now they seem off.
A simple example is Neltharus+11. I ran it today, and I timed it with 3 minutes to spare, roughly:
As shown here, Neltharus+11 earned me a total of 147 points, as I have not run it on Fortified week yet. In DF S1, the math to calculate how much rating I’d get if I (just barely) timed a +11 on only one weekly affix would look like (level
here is 11
):
1.5 * (50 + (level * 5) + ((level - 10) * 2))
The 1.5
here is because they weight the higher of the two weeks (Tyrannical/Fortified) by 1.5, and the lower by 0.5. Since I have never run Fortified yet, we can skip that. This shows that using DF S1 rules, I would have earned (1.5 * (50 + 55 + 2)
), or 1.5 * 107
, or 160.5
overall rating for Neltharus. There is a bit of wiggle room points-wise for being a bit over or a bit under the timer, but if I timed the dungeon, this value represents the lower bound I could possibly have.
And yet, I have an overall score of 147
for Neltharus, despite running a +11 and timing it with 3 minutes to spare. if I divide 147 / 1.5
, I get 98
. This tracks with what the Lua API offers for Neltharus (mapID 404
):
/script print(C_MythicPlus.GetSeasonBestAffixScoreInfoForMap(404)[1].score)
This prints 98
for me, which is too low even by SL S4 standards (without the extra 2 points it’d still be at least 105
).
So… did Blizzard change the formula? Something doesn’t add up anymore, and I could really use an official answer. If anyone else saw an official post (like the wowhead link above) and I just missed it, I’d love to see it.
Thanks in advance.