14 - Enchantments.
I would like the ability to make Tankpoints ignore Enchantments, like ratingbuster can, and set default gems, again, like ratingbuster does.
Maybe with the ability to choose the best gem from a tankpoint view automatically, and just be able to choose what quality of gem you want, and if you want the gem-bonuses.
for example, if I have a pair of pants with 100 armor and no gemslots, enchanted with the 55 stam, 22 agi-armor, it is by tankpoints viewed as better than a pair of pants with 200 armor and three blue gemslots with a 4 stam bonus.
it would then compare the pants as (100 armor) and (200 armor+(30stam*3)+4stam) -- completely ignoring the enchantments.
(I hope this is not already implemented, and I just can't find it.)
Thank you.
| User | When | Change |
|---|---|---|
| medivh | Sat, 29 Aug 2009 10:21:30 | Create |
- 1 comment
- 1 comment
Facts
- Last updated on
- 22 Oct 2009
- Reported on
- 29 Aug 2009
- Status
- New - Issue has not had initial review yet.
- Type
- Enhancement - A change which is intended to better the project in some way
- Priority
- Medium - Normal priority.
- #1
Tirdal Thu, 22 Oct 2009 07:27:29I wanted the same thing, and found that there's a fairly simple way to get it to ignore all gems and enchants, which means socket bonuses might make a difference, but that's very minor compared to ungemmed and unenchanted vs. gemmed and enchanted.
At line 266 in TankPointsTooltips.lua, replace:
Get diff tables local diffTable1, diffTable2 if TPTips:GetItemSubType(link) == L["Gems"] then diffTable1 = StatLogic:GetSum(link) else diffTable1, diffTable2 = StatLogic:GetDiff(link) endwith:
Get diff tables local diffTable1, diffTable2 if TPTips:GetItemSubType(link) == L["Gems"] then diffTable1 = StatLogic:GetSum(link) else diffTable1, diffTable2 = StatLogic:GetDiff(link, diffTable1, diffTable2, true, true) end