HealPoints
HealPoints is a healer gear benchmark addon similar to TankPoints for tanks. It is designed to make it easier for healers to choose the most optimal gear, balancing
- Intelligence
- Mana Regen
- Spirit
- Spell Power
- Crit Rating
- Spell Haste
It displays all your relevant basic stats as well as HP/sec
, HP/mana
, etc. for all your healing spells. It also displays a few more advanced benchmarks:
- PowerPoints: focused on healing output over a short period
- EndurancePoints: focused on healing output over a long period
HealPoints detects and supports all relevant talents and almost all set and equip bonuses.
You can view your current HealPoints by typing:
/hp calc
Your HealPoints, PowerPoints and Endurance points will also be displayed on your paperdoll.
If you have a LibDataBroker feed view (e.g. TitanPanel) then you will see:
- a feed containing your current HealPoints
- a tooltip showing the value of relative stats
HealPoints contains a calculator that lets you manipulate the basic stats and see how they affect your spells and overall healing efficiency.
I'll check.
is it possible to get this to work with atlasloot? tankpoints does but for some reason I can't get healpoints to show the values in atlasloot.
Currently, there are a few circumstances where someone may be wanting to compare an item with TBC gems vs. one with new gems. For instance, T5/BC badge gear you haven't wanted to invent in new gems in (you are waiting for new drops). Or a leveling healer with old gems in gear.
So hope TBC gems can be put back in.
Both TBC and WotLK gems are supported for items that already have gems in their sockets. The change I did only concerns empty sockets.
If you go to the Game Menu (Esc) and select Interface, Addons, HealPoints; you'll be able to select which gems HealPoints will use for empty sockets when comparing items. Useful, for example, when an item with sockets drops and you want to compare it to what you're wearing.
The lists for empty socket calculations used to include TBC rare and epic gems. What I did in 3.2 was to replace them with WotLK rare gems.
Hope that made sense :-)
Could it be the %regen fix? Or the gem changes?
Which trinkets are these?
Would that be possible any time soon?
Thanks!
For now you can just enter the values into the calculator.
You'll then get two tooltip values, one of them with the calculator changes included.
you just roll your mousewheel, and then it buffs all the guys with those buffs they need :)
anyways, GREAT addon, I couldn't live without it anymore, just sometimes that pasting gets annoying :)
I'm a bit hesitant to add code specific to just one addon.
So I guess I'll have to download AtlasLoot and check.
I've been meaning to add healpoint values to the tooltips you get when inspecting other people. I'll get that done in the next version.
What steps will reproduce the problem?
In german version of wow there are two different versions of spellpower tooltips. This addon only detects one version, so many items are calculated wrong.
What version of the product are you using?
I use the latest version, Healpoints-r42
Please provide any additional information below.
Solution: Add an other line of code for detection of the second version of spellpower in german version (localization_de.lua
old code:
{ pattern = "Erh\195\182ht die Zaubermacht um (%d+)%.", effect = "HEAL" },
new code:
{ pattern = "Erh\195\182ht die Zaubermacht um (%d+)%.", effect = "HEAL" },
{ pattern = "Erh\195\182ht Zaubermacht um (%d+)%.", effect = "HEAL" },
Btw, you can set up the curse updater to accept betas and not only release versions.
I'll look into it and post a fix soon. Thanks!
The formula on line 612 of calculator.lua that reads...
return critRating * (41 / (14 * 26)) * (131 / 63)^((UnitLevel("player") - 70)/10);
SHOULD read
return critRating/14/((82/52)*(131/63)^((UnitLevel("player")-70)/10))
ALSO
Int per spell crit is still being calculated at lvl 70 Value of 80 intellect per 1% spell crit.
This is on line 616 and reads
local intPerCrit = 80;