• World of Warcraft Addons
  • World of Warcraft
  • Average Rating:

  • Your Rating

  • Share
  • Report Abuse

GearDPS

 

Project Updated:
Files Updated: Thu, Dec 25 2008
Supports Game Version: 3.0.3
Category: Tooltip
Tags:

, , , and [Edit Tags]

Project Manager: kbranch
Additional Authors: No additional authors
Current Version: .77b
License: All Rights Reserved
Development Site: CurseForge.com
Avg Daily DL (last 30 days): 95
Downloads Total: 68,283
Favorites: 152
Comments: 117
  • Curse Giveaways
  • Alganon

    Alganon

    Alganon Open Beta Key Giveaway Alganon is an upcoming fantasy-based MMORPG that allows thousands of people to play together in a virtual world that features a rich history dominated by commanding deities...

    Get Key

  • Contests
  • About GearDPS
  •  

GearDPS adds a DPS value to item tooltips based on weight given to each stat. Basically, the higher the number, the better that piece of gear is for pure DPS. Note that by default this doesn't take survivability into account, it's just for sheer DPS. Custom weights can be given to all stats, including stam, spirit, and MP5. Any user specified weights will override the ones used by GearDPS.

GearDPS now supports all classes/specs. This was made possible because I scrapped the whole idea of dynamically calculating stat weights. The way I was doing it before was too simplistic to do much good, so I've just hard coded some (somewhat) reasonable defaults in for each class/spec. Most of the default numbers are just the item budget weights for right now, input on good default values for various classes/specs is welcome.

If you encounter problems, I'd appreciate it if you let me know about it. You can send an email to kbranch38@gmail.com, or just leave a comment here.

  • Downloads (5)
  •  
File Name Release Type Game Version Downloads Date
Addon Curse.com Beta 2.3.3 0 9/29/2008
  File Name Release Type Game Version Downloads Date  
  GearDPS .77b Beta 3.0.3 43,290 12/25/2008
  GearDPS .76b Beta 3.0.3 3,600 12/8/2008
  GearDPS .751b Beta 3.0.3 549 12/1/2008
  GearDPS .75b Beta 3.0.3 273 11/30/2008
  GearDPS .74b Beta 3.0.3 349 11/30/2008
  • 1 page(s)
  • Screenshots (2)
  •  
  • Comments

Add Comment

Add

You need to login or register to post.

Benefits of Registration

  • Interact with hundreds of thousands of other gamers on an open social network.
  • Post your stories, news, images, videos, and other content to share.
  • Create a network with your fellow gamers or join an existing one.
  • Gain reputation for everything you do.
  • Someone please take this over and do a rebuild or continue project. This was a great add-on but since the last update I am always getting errors from it. I tried to do the fix someone already posted but I either messed it up or I just don't understand the fix.

    Reply Report Permalink
  • Madlander said

    This was a great add-on back in the day. I wish some one would take it over. Anyone else no a add-on like this one thats current?

    Reply Report Permalink
  • Madlander said

    I did find an add-on similar to this one, Athene's Upgrade Estimator. it works ok, but i like GearDPS better, when it was working that is.

    Reply Report Permalink
  • dedefaes said

    I just found this addon and I think the concept is frigging awesome... I'll see if it still works, and I really really hope it does, if not, please someone start working on this again :(

    Reply Report Permalink
  • Darnow said

    Would realy love to see an update for this addon, its a very good addon that rocks, would be nice for a fix for 3.2, could someone continue the work on this if its abandoned?

    Reply Report Permalink
  • Cracka_Bob said

    i agree... WTB update plz

    Reply Report Permalink
  • ninjagecko said

    how is this broken for 3.2?

    all I get are some annoying errors when I first hover over items when I log in

    Reply Report Permalink
  • atherun said

    I was able to fix this, you need to make changes in two different places:

    Change the start of this function to this:

    function GearDPS.modifyTooltip(tooltip, name, item)
    --print("Entering ModifyTooltip");


    if GearDPS.Class == "Unknown" then
    --print("Detecting new class");
    GearDPS:DetectClass();

    GearDPS:RedoCalcs();
    end

    if not item or GearDPS.Class == "Unknown" then
    --print("Class was unknown");
    return
    end

    and change the line in function GearDPS:DetectClass() to this:
    if not(GearDPS.spec[1] == 0 and GearDPS.spec[2] == 0 and GearDPS.spec[3] == 0) then
    local playerClass, _ = UnitClass("player");

    if playerClass == "Hunter" or playerClass == "Rogue" or playerClass == "Warrior" or playerClass == "Mage" or playerClass == "Priest" or playerClass == "Warlock" or playerClass == "Death Knight" then

    That should get this working again.

    Reply Report Permalink
  • ninjagecko said

    what problem does this fix?

    Reply Report Permalink
  • atherun said

    forgot to add, for all the other playerClass compares, change them to the format of "Warlock" instead of "WARLOCK"

    Reply Report Permalink
  • 5h0r7y said

    sorry but what file is this?

    Reply Report Permalink
  • ToXiN06 said

    Core.lua, lines 218 and 94

    Reply Report Permalink
  • Cracka_Bob said

    forgive me for asking a dumb question but... where is that? idk what that means :(

    Reply Report Permalink
  • Cracka_Bob said

    is there somewhere i can go to find weight values for different classes? so far ive only found one for shadow priests (which was more accurate than the default btw) and was wondering if anyone knows where i can find weights for other classes/specs

    Reply Report Permalink
  • Wye said

    How I fixed it for 3.1:

    1. In "\Interface\AddOns\GearDPS\libs", replace abandoned and outdated library "StatLogic-1.0" with "LibStatLogic-1.1"(get it from wowace.com)
    2. Edit file Core.lua at line 38 replace string "StatLogic-1.0" with "LibStatLogic-1.1"

    Now it works perfectly :D
    I hope it helps.

    Reply Report Permalink
  • Zidomo said

    Uh wrong. Totally and completely wrong.

    GearDPS .77b does _not_ have "StatLogic-1.0" at line 38 of core.lua.

    The places where "StatLogic" is referenced in that file are lines 5, 13, 347, 348, 355, 358, 499, 558 & 583 (using a text editor that shows line numbers properly, like the free Notepad2).

    A further problem is that line 13 is "StatLogic = AceLibrary("StatLogic-1.0");" Only problem is, the updated LibStatLogic-1.1 no longer uses AceLibrary, it loads via LibStub. So your modifcation--even if it did reference the proper line number(s)--wouldn't work anyway.

    Not to mention, I have tested other mods here that use the old StatLogic-1.0 and work just fine (even if the data is outdated), such as TankTotals & FuBar_AbramsFu.

    So far more extensive changes are required for GearDPS the start displaying tooltip info properly again in WoW 3.1.x.

    Reply Report Permalink
  • i have libstatlogic-1.1, i made the change and edited the core file but its still not working. im sure ive messed it up somehow im just not sure where. if you would please post which files from libstatlogic-1.1 i need to add to the geardps folder i would appreciate it. mby a screen shot of the finished product? thanks in advance.

    Reply Report Permalink
  • yusufard said

    great work, need an upgrade for 3.1

    Reply Report Permalink
  • jaredwt said

    great mod. any plans to update it for 3.1?

    Reply Report Permalink
  • noname1 said

    GearDPS .77b tool-tip is not displaying on my gear(even when i set manual values). I've tried it on a few different classes & have had the same results. (I checked to make sure all other addons turned off so there were no conflicts)

    *But GearDPS .76b gives me no problems & the tool-tip works.
    I really like this mod, is there something i need to be doing in order for the .77b to work correctly?

    Reply Report Permalink
  • Similar Addons
  •  

Average downloads per day

  1. 3,968 Auctioneer Auction & Economy, Mail, and...
  2. 2,852 GearScore Tooltip
  3. 2,566 RatingBuster Tooltip, and Bags & Inventory
  4. 2,438 Auctionator Auction & Economy, and Tooltip
  5. 1,888 Overachiever - achievement tools and tweaks Achievements, and Tooltip