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

  • Your Rating

  • Share
  • Report Abuse

DiamondThreatMeter

 

Project Updated:
Files Updated: Thu, Aug 6 2009
Supports Game Version: 3.2.0
Category: Boss Encounters, Combat, Damage Dealer, Healer, and Tank
Tags:

, , , , and [Edit Tags]

Project Manager: MrCool
Additional Authors: No additional authors
Current Version: 2.1.0 [final]
License: All Rights Reserved
Development Site: CurseForge
Avg Daily DL (last 30 days): 130
Downloads Total: 182,650
Favorites: 274
Comments: 196
  • Contests
  • About DiamondThreatMeter
  •  

WoWInterface

DTM is also now hosted on WoWInterface. Go there for an alternate download link: http://www.wowinterface.com/downloads/info9512-DiamondThreatMeter.html

Highlights:

  • Complete multi-target threat meter (which makes difference between mobs sharing the same name).
  • Independant threat computation. You have a fairly good idea of what one's threat is even if one hasn't DTM installed on one's client.
  • Designed for English and French languages. :)
  • Configuration is well explained and easily accessable, through Blizzard's interface and bindings menus.
  • Final version.

DiamondThreatMeter could only be designed thanks to features Blizzard added to inspection and combat log systems (2.3 and 2.4 patches). :)

  • Downloads (6)
  •  
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  
  DiamondThreatMeter 2.1.0 [final] Release 3.2.0 13,699 8/6/2009
  DiamondThreatMeter 2.0.1 Release 3.0.8 27,384 1/21/2009
  DiamondThreatMeter 1.7.0 (hybrid, hotfixed) Release 2.4.3 33,384 10/4/2008
  DiamondThreatMeter 1.6.0 (hybrid) Release 2.4.3 2,224 8/22/2008
  DiamondThreatMeter 1.5.0 Release 2.4.3 1,045 8/5/2008
  • 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.
  • Flappers said 

    Is there a way to configure the addon, move the frames etc while not in combat please. I cant for the life of me see that option, if, indeed, it even exists. Thanks in advance & great work on a fine Mod, keep up the good work :)

    Reply Report Permalink
  • I think I may take up actually redoing the addon in my spare time since it wont be updated again anytime soon. In the mean time I have created a quick bug fix version here: [URL]http://dl.getdropbox.com/u/353710/WoW%20Stuff/DTM/index.htm[/URL]

    That address is static, so check it periodically for updates. If enough interest is in it I'll add it to WowI and Curse

    Reply Report Permalink
  • venoman said 

    You might want to do that. People will probably not trust it being hosted on an external server. A list of what bugs were fixed would also be useful.

    Reply Report Permalink
  • yiNXs said 

    For those interested. I'm quite sure I've found the problem with the SAP CC. In the crowdControl.lua there are only 3 ranks of Sap defined. The 4th rank (lv 71, 60 seconds duration) is missing. I've added it to the file and tested it. Uptill now I haven't gotten the error anymore.

    I will try to find a way to place the fix here, but it's easy to fix yourself with a texteditor like notepad.

    In the addonfolder goto the DiamondThreatMeter\engine\ folder, and open crowdControl.lua

    On line 123 you'll find SAP section. Make it look like this:

    ["SAP"] = {
    ignoreGlobalThreat = 1,
    notSpammable = nil,
    duration = {
    [1] = 25,
    [2] = 35,
    [3] = 45,
    [4] = 60,
    },
    },

    Note the element with [4], that needs to be added. After that, it should run smoothly again.

    I'll also try to find the location where it throws the huge in-your-face error, which is of interest to nobody, and try to find a way to disable it. That should make it safe to use again.

    Reply Report Permalink
  • venoman said 

    Wow. If that's all it was I am thoroughly annoyed. What an easy thing for the author to fix, and I'm surprised he didn't think of it with his "everything's fine again" 3.2 release. I have made the change you suggested, and it makes perfect sense that it would have been the culprit.

    Sap is the only CC ability I've noticed that causes this problem, but now that you've got me curious, I'm going to try to think of and review ranks of other CC methods to make sure they couldn't potentially be problematic as well.

    Ifyou find a way to completely hide that error screen, that would be amazing as well. Thanks again for finding this :)

    Reply Report Permalink
  • venoman said 

    Here's what I found. For those that prefer not to read, there are several errors that will cause incorrectly reported threat, but rogue sap should be the only change needed to prevent the error screen of death. It's possible that polymorph black cat would cause the problem without my change below, too.

    For those wishing to clean things up, find the areas in the documents with these headers in brackets, and change the sections to match what I'm posting here:

    ["WYVERN_STING"] = {
    ignoreGlobalThreat = 1,
    notSpammable = nil, -- Hardly/unlikely but still technically possible to refresh it.
    duration = 30, -- Duration was 12, should've been 30
    },

    -- Add this entire section below POLYMORPH_TURTLE. Black cat wasn't added as a threat wipe at all:
    ["POLYMORPH_BLACK_CAT"] = {
    ignoreGlobalThreat = 1,
    notSpammable = nil,
    duration = 50,
    },

    -- Remove this section. There's no such thing as turn undead anymore.
    ["TURN_UNDEAD"] = {
    ignoreGlobalThreat = 1,
    notSpammable = nil, -- Hardly/unlikely but still technically possible to refresh it.
    duration = {
    [1] = 10,
    [2] = 15,
    },
    },

    Also as an FYI, if you are glyphed to make psychic scream last 10 seconds, it will only cause a threat wipe for 8. I don't know of a way around this.

    Granted I don't understand a lot about WoW API - maybe the black cat addition needs to actually be reference somewhere to do something. I'd be interested to see if I can find someone with the ability to find out if it causes problems or not.

    Reply Report Permalink
  • abilities.lua
    DTM_Abilities["POLYMORPH_BLACK_CAT"] = DTM_Abilities["POLYMORPH"];

    And internals.lua has several references. It helps if you spoeak French and German for those sections though.

    Reply Report Permalink
  • yiNXs said 

    It seems like most of the application is still living in TBC days. It also lacks the paladins repentance as CC for example and if you look at files like the npcAbilities.lua you'll see that it only contains TBC bosses. I'm pretty sure there's bosses with threataltering abilities in LK too, like the spores on loatheb for example.

    I feel like fixing everything, but my lua knowledge is almost non-existant, and so is my time. I think I'm going to be happy with the sap fix and ignore the rest. I just hope MrCool one day decides to return to this great addon and updates it completely.

    But for now, I've found a fix for the error popup:

    Go to the /gui/errorConsole.lua file and remove line 214 (or put 2 minus signs in front of it).

    I haven't tested this very well (that requires me to force errors some way), but it's so obvious the place where the window get's opened I don't think I need to.

    Reply Report Permalink
  • Hey im new to usingg this and really like it especially the regain list as i can see in blue which enemy i dont afe aggor on but it would be really nice if there was some way i could clik that name and it automatically switch my target is this efen possibe or can u lardy do it and its not an option i dont know how to use PLEEEEESE help im desperate that would make this the best threat metr in the world

    Reply Report Permalink
  • venoman said 

    That was barely english. That aside, the answer is still no.

    Reply Report Permalink
  • yiNXs said 

    I have found out the same, I still got a lot of crowdcontrol lua errors on my screen ..Which will force me back to omen for now... again :(

    Reply Report Permalink
  • venoman said 

    As an FYI, this doesn't "work fine with 3.2". CC abilities like Sap still cause the error screen to pop up midpull.

    Reply Report Permalink
  • yiNXs said 

    Also here on Curse: Thank you very very much! Glad to have this back!

    Reply Report Permalink
  • goko04 said 

    hello i really enjoy using this addon but there is 1 problem with it and i would be glad if you can fix it..

    when i use this addon i can see my agro on all mobs and who is on me who is not but some times i lost my aoe agro so i have to get back, the addon shows who is not on me but i want to click it from that bar couse many times add's name are same and not allways have a chanse to mark them. so i would glad if you can put a targeting with clicking in bar.if you do this this addon will be perfect

    Reply Report Permalink
  • venoman said 

    I'm really disappointed that work on this addon was discontinued. Omen doesn't even attempt to use an overview mode anymore. With DTM blowing up every time something like sap goes off, however, I just can't justify clicking through the errors anymore.

    Reply Report Permalink
  • MrCool said 

    Hi, I submitted a final update update for DTM to make it work fine with 3.2, enjoy :)
    I will now let DTM R.I.P while I focus on my other mods :)
    Thanks for all of your support guys.

    Reply Report Permalink
  • venoman said 

    Wow. Very cool. I'll have to try this in my next raid. I'll also have to see if I can rummage through the code to find a way to completely hide DTM unless I'm both in a group AND in combat.

    Thanks very much for taking the time to clean things up for us!

    Reply Report Permalink
  • Lliak said 

    getting a runtime error

    A runtime error has occured.

    ...ce\AddOns\DiamondThreatMeter\engine\crowdControl.lua:252: attempt to compare number with nil

    First failure of the function.

    DTM v2.0.1 (enUS)
    Date (day first): 29/06/09 18:13:30
    WoW version: 3.1.3 (9947), May 26 2009
    Character: Kaill, server: Sargeras

    AddOns (35): AtlasLoot, AtlasLoot_BurningCrusade, AtlasLoot_Crafting, AtlasLoot_OriginalWoW, AtlasLoot_WorldEvents, AtlasLoot_WrathoftheLichKing, AtlasLootFu, Auc-Advanced, Auc-Filter-Basic, Auc-ScanData, Auc-Stat-Classic, Auc-Stat-Histogram, Auc-Stat-iLevel, Auc-Stat-Purchased, Auc-Stat-Simple, Auc-Stat-StdDev, DiamondThreatMeter, Gatherer, GathererDB_Wowhead, Ace2, Ace3, Outfitter, Prat-3.0, Prat-3.0_HighCPUUsageModules, Prat-3.0_Libraries, QuestHelper, RatingBuster, Recount, SpellBinder, Stubby, TankPoints, DBM-Core, DBM-GUI, DBM-Naxx, DBM-Party-WotLK

    Reply Report Permalink
  • yiNXs said 

    I so hope someone will continue this. I've been back to omen for a while now because the midfight center screen errordisplays I got were just plain dangarous, often causing me to fuckup.

    Nevertheless, it's soo much better then omen. The big in-your-face threatbar + warningsound when getting close to grabbing aggro made this the greatest threat addon. Omen gives a one time warning alright, but then you have to stare at the window, to find out if you're still in the dangerzone, ******* up rotations, or even missing what's happening on screen.

    Besides, omen looks like crap too, and since play a tank, an AoE dps, and a healer I loved the versatility of this addon.

    It's nice to hear he's working on some awesome bossmod. I just hope someone could take over this project, as for me personally, I need a good threatmeter more.

    Reply Report Permalink
  • evantaur said 

    it's caused by CC

    hope some1 takes over this project

    Reply Report Permalink
  • Similar Addons
  •  

Average downloads per day

  1. 28,409 Deadly Boss Mods Boss Encounters, and Combat
  2. 13,633 Recount Combat
  3. 6,333 BigWigs Bossmods Boss Encounters, and Combat
  4. 3,804 Omen Threat Meter Boss Encounters, and Combat
  5. 3,246 Decursive Buffs & Debuffs, Boss Encounters...