Download
(6Kb)
Download
Updated: 03-08-11 10:09 AM
Pictures
File Info
Updated:03-08-11 10:09 AM
Created:unknown
Downloads:3,553
Favorites:38
MD5:

WowheadPoints

Version: v40000-0.0.4
by: Cladhaire [More]

This addon adds stat weight calculations to item tooltips, based on the stat weights provided by Wowhead.com. This allows you, for any given spec, to compare two items to see which one is 'better' for your character.

Currently these stats make no adjustments for reforging or sockets, so you'l need to make those comparisons yourself, although it's possibly that we can automate this in the future.

The stats for individual specs are not meant to be compared to each other, you can't use them to determine if an item is a 'Tanking' item or a 'Casting' item.. the scales just aren't comparable like that. What you can do is use it to compare two items to see if one if better for a given spec, which is the purpose.

commit 0afe3878a6def2321fc23087baf756974e937d86
Author: James Whitehead II <[email protected]>
Date: Tue Mar 8 16:08:07 2011 +0000

Updated stat weightings based on contributed values

commit 1c79240b58caab5f16e9caf21475813658bd1cfe
Author: James Whitehead II <[email protected]>
Date: Mon Nov 29 20:51:45 2010 +0000

Normalize scores, same as StatScores

commit 85c98dae208502f67a3e7f3b9b51de76047dfc0f
Author: James Whitehead II <[email protected]>
Date: Sun Nov 28 12:35:14 2010 +0000

Added all class weights from wowhead.com

commit 819bb8a87deaff050bb1ee0b6518098d92c60903
Author: James Whitehead II <[email protected]>
Date: Sun Nov 28 11:44:20 2010 +0000

Initial commit of WowheadPoints
Post A Reply Comment Options
Unread 02-13-11, 08:49 AM  
Pinghansen
Certified Insane
AddOn Author - Click to view AddOns

Forum posts: 3
File comments: 75
Uploads: 2
WowheadPoints - nicer, simpler

I've been trying Pawn side by side with WowheadPoints for a while, and it's WowheadPoints that I use.

Granted, the little indicators Pawn puts in the tooltips ARE nice, especially in an instance, but I prefer the way I get info for all specs at once. That feature is especially important on my druid, where I keep several sets for versatility.

The other alternative that you mention, StatPoints, I have been unable to locate.
Report comment to moderator  
Reply With Quote
Unread 02-13-11, 08:54 AM  
Cladhaire
Salad!
 
Cladhaire's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 1935
File comments: 4939
Uploads: 19
That's odd, I seem to be unable to find it now as well.. I wonder what the hell happened to it. Someone sent me updates stats for all specs, but I'm not sure the weights are final, some seem a bit weird. I won't be able to do much with it until tomorrow.. probably. I have a huge deadline next Monday and I've been working non-stop on it.
__________________
"There's only one thing that I know how to do well and I've often been told that you only can do what you know how to do well, and that's be you-- be what you're like-- be like yourself. And so I'm having a wonderful time, but I'd rather be whistling in the dark..."
Report comment to moderator  
Reply With Quote
Unread 02-13-11, 04:06 PM  
Pinghansen
Certified Insane
AddOn Author - Click to view AddOns

Forum posts: 3
File comments: 75
Uploads: 2
Originally posted by Cladhaire
Someone sent me updates stats for all specs, but I'm not sure the weights are final, some seem a bit weird.
Yup, that was me

And, like I wrote, some of them sure do look wierd. There's a forum for discussing weights at wowhead, and it looks like they use what they get from EJ without critique. EJ may be fine for endgame, but for leveling, their weights are somewhat counterproductive. And not taking attack power in consideration on a rogue, that is plain wrong.

There are a few lines that you need to look at. They all have comments.
Report comment to moderator  
Reply With Quote
Unread 02-14-11, 06:39 AM  
Pinghansen
Certified Insane
AddOn Author - Click to view AddOns

Forum posts: 3
File comments: 75
Uploads: 2
How to let people maintain their own weights

This is the concept for how people can maintain their own weights for WowheadPoints. Weights defined in this way will overrule the default values in WowheadPoints. You can simply disable the addon, if you want to use the original values.

Please note, that I haven't had the time to test this, but I've used same concept with success for ShotGlass Raid Frames auras. When I've had time to test it, soon I hope, I'll put it up as an optional file for WowheadPoints.

Edit: of course it puts up an error. local Weights is nil. I'll look at it, when I get the time - I'm a bit busy in my head

First make a new addon folder called WowheadPoints_rogue, then create two new files in the new folder:

WowheadPoints_rogue.toc
Code:
## Interface: 40000
## Title: WowheadPoints: External rogue weightings
## Notes: Overrule the default rogue weightings for WowheadPoints
## Author: PingHansen 
## Version: 0.1
## Dependencies: WowheadPoints

WowheadPoints_rogue.lua
WowheadPoints_rogue.lua
Code:
	
	local Weights = WowheadPoints.info

        -- Rogue weights...
	Weights[ROGUE] = {
        ["Assassination"] = {
            weights = {
                DAMAGE_PER_SECOND = 100, -- melee
                AGILITY = 100,
                HIT_RATING = 67,
                ATTACK_POWER = 57, -- Estimate, missing in EJ values
                MASTERY_RATING = 50,
                HASTE_RATING = 46,
                EXPERTISE_RATING = 42,
                CRIT_RATING = 35,
            },
        },
        ["Combat"] = {
            weights = {
                DAMAGE_PER_SECOND = 100, -- melee
                AGILITY = 100,
                HIT_RATING = 70,
                EXPERTISE_RATING = 59,
                ATTACK_POWER = 57, -- Estimate, missing in EJ values
                HASTE_RATING = 56,
                CRIT_RATING = 35,
                MASTERY_RATING = 33,
            },
        },
        ["Subtlety"] = {
            weights = {
                DAMAGE_PER_SECOND = 100, -- melee
                AGILITY = 100,
                ATTACK_POWER = 57, -- Estimate, missing in EJ values
                HIT_RATING = 40,
                HASTE_RATING = 37,
                EXPERTISE_RATING = 33,
                CRIT_RATING = 31,
                MASTERY_RATING = 20,
            },
        },
    },
Last edited by Pinghansen : 02-14-11 at 10:27 AM.
Report comment to moderator  
Reply With Quote
Unread 02-15-11, 05:18 AM  
Pinghansen
Certified Insane
AddOn Author - Click to view AddOns

Forum posts: 3
File comments: 75
Uploads: 2
WeightsWatcher

Since Cladhaire needs a bit of well deserved rest from maintaining too many addons, an alternative to WowheadPoints could be WeightsWatcher
Report comment to moderator  
Reply With Quote
Unread 02-18-11, 03:47 PM  
Pinghansen
Certified Insane
AddOn Author - Click to view AddOns

Forum posts: 3
File comments: 75
Uploads: 2
Another alternative

Another alternative could be StatScore
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump:

Support AddOn Development!

You have just downloaded by the author . If you like this AddOn why not consider supporting the author? This author has set up a donation account. Donations ensure that authors can continue to develop useful tools for everyone.