Category: Ace: Combat
Addon Information
Works with 3.1
Download Latest Version.
To add favorites please register for a free account. If you already have one you need to login. How do I install this? (FAQ)
Brimm's Portal Bug Reports Feature Requests
Author:
Version:
1.5.1
Date:
04-14-2009 10:07 AM
Size:
99.79 Kb
Downloads:
11,621
Favorites:
149
MD5:
Pictures
MyThreat   Popular! (More than 5000 hits)
Enjoy this addon? Consider donating!




This addon works with version 3.0 of World of Warcraft Exclusively. It will not work with any previous version.

MyThreat is a simple compact threat information frame containing only the most essential data. It is designed to be a summary of the current threat situation - basically "how does threat relate to me RIGHT NOW".

Threat is automatically adjusted for Mirror Image and Fade.

There are three modes of operation:
  • Standard mode:
    • Main use: Default behavior. Shows your threat relative to the person who currently has aggro on your target.
    • The percentage value represents your threat relative to the current tank's threat.
    • The threat difference represents the difference between your threat and the current tank's threat.
    • The name is that of the current target's tank.
  • Focus mode
    • Main use: On fights with multiple tanks where the DPSers need to stay below all of them (ex: Gruul, Void Reaver, Gurtogg, Eredar Twins).
    • The percentage value represents your threat relative to the person on the focus list with the lowest threat.
    • The threat difference represents the difference between your threat and the person on the focus list with the lowest threat.
    • The name is that of the person on the focus list with the lowest threat.
    • Enabled via a slash command ("/myt focus set TankA,TankB" to set, "/myt focus" to clear).
    • Cleared via a slash command ("/myt focus clear").
    • Set to automatically adjust to the raid's Main Tanksm as set via the Blizzard raid UI ("/myt focus tanks").
  • Tank mode:
    • Main use: Being able to see who is about to surpass you on threat and determine rapidly your thread lead relative to the other raid members.
    • The percentage value represents the person with the 2nd highest threat's relative threat compared to yours.
    • The threat difference represents your lead on the 2nd highest person on the threat list.
    • The name is that of the 2nd highest person on the threat list.
    • Enabled via the interface options or a slash command.

The values are color coded based on level of danger of pulling threat. All values for colors can be customized via a slash command (/mythreat or /myt).

All threat information is obtained via the WoW Threat API. This AddOn is not meant as a replacement to Omen but rather as a supplement, allowing you to have summary information on your current threat situation at a glance while ignoring that of others.

This addon will no longer be hosted on WoWAce/Curse and will now exclusively be updated on WoWInterface.

Current AddOn version: 1.5
  Change Log - MyThreat
1.5.1:
-Updated TOC for WoW 3.1 patch.
------------------------------------------------------------------------
1.5:
-Revamped focus mode. /mythreat focus now has three options: set (to set a manual list, much like it worked previously), clear (which removes the current focus list) and tank, a new mode, that sets the focus list to mirror the raid's Main Tank list (as set by the default raid UI).
------------------------------------------------------------------------
1.4:
-Threat is now adjusted when Fade and Mirror Image is in effect (enabled/disabled via interface options).
------------------------------------------------------------------------
1.3.4:
-Modified COMBAT_LOG_EVENT_UNFILTERED event to throttle processing (cuts down on CPU usage).
------------------------------------------------------------------------
1.3.3:
-Fixed Tank mode.
------------------------------------------------------------------------
1.3.2:
-Fixed Focus mode.
-Optimized display update code.
------------------------------------------------------------------------
1.3.1:
-Changed the standard mode to hide when player is the one tanking target.
-Fixed an issue with threat range colors.
------------------------------------------------------------------------
1.3:
-Moved from Threat-2.0 to the WoWAPI for threat information.
-Changed standard mode to always compare to current tank rather than current target.
-Added profile support to the addon interface options.
------------------------------------------------------------------------
1.2:
-Added a new "tank mode" that can be enabled via the options.
-Added a new "focus mode" that can be set and cleared via a slash command.
------------------------------------------------------------------------
1.1:
-No significant changes other than updating Threat-2.0 version.
------------------------------------------------------------------------
1.0:
-Initial release.
  Archived Versions - MyThreat
File Name
Version
Size
Author
Date
1.5
100kB
Brimm
03-31-2009 09:20 PM
1.4
100kB
Brimm
12-30-2008 06:13 PM
1.3.4
99kB
Brimm
11-26-2008 12:14 AM
  Comments - MyThreat
Post A Reply
Author Comments Comment Options
Old 06-30-2009, 05:06 PM  
Brimm
A Kobold Labourer
 
Brimm's Avatar
Interface Author - Click to view interfaces

Forum posts: 0
File comments: 39
Uploads: 5
I've been debating simply switching from DPS to tank mode based on if you're tanking the current target instead of making it a switch, likely with a different style so you can see at a glance if you're tanking the mob or not.

I don't expect to have the time to update the version shortly, but likely in a few weeks or a month I'll put out a new version with this feature.
Brimm is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 06-30-2009, 09:40 AM  
Yerodan
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
Nice Addon! I am playing a feral druid and I have completely removed Omen after installing this.

One Feature Request:
I am switching from tank to melee DPS quite often, I would love it, when tank mode switching is done by changing stances/form/presences
Yerodan is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-08-2009, 08:34 PM  
Gallahead
A Kobold Labourer

Forum posts: 0
File comments: 46
Uploads: 2
thank you very much.
keep on going dude, great addon.
__________________
"If nearly all guilds want the same class as their MT, we've failed."
Ghostcrawler, 2008-08-12 17:28:59
Gallahead is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-08-2009, 04:04 PM  
Brimm
A Kobold Labourer
 
Brimm's Avatar
Interface Author - Click to view interfaces

Forum posts: 0
File comments: 39
Uploads: 5
Quote:
Originally posted by Gallahead
any idea how to add outlines to the font?
You can open up the `MyThreat.xml` file, search for any instance of `<FontString` and add the attribute `outline="[...]"` where you replace `[...]` by one of the following: "NONE", "NORMAL", "THICK".

Alternatively, you can use the `SetFont` method to change the font type:

local fontFace, fontSize, _ = MyThreat_ThreatFrameThreatDiff:GetFont();
MyThreat_ThreatFrameThreatDiff:SetFont(fontFace, fontSize, "OUTLINE");

You can substitute "OUTLINE" in that last statement for "THICKOUTLINE".

The three FontString instances used in this addon are: `MyThreat_ThreatFrameThreatDiff`, `MyThreat_ThreatFrameThreatPercDiff`, `MyThreat_ThreatFrameThreatPlayerName`.

You can also open up MyThreat.lua at line 382 and change it there so it automatically sets the outline to the type you prefer.

Good luck!

A few links with additional information:
http://fara.webeddie.com/ui/
http://www.wowwiki.com/API_FontInstance_SetFont
http://www.wowwiki.com/API_FontInstance_GetFont

Last edited by Brimm : 04-08-2009 at 04:05 PM.
Brimm is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-07-2009, 09:03 PM  
Gallahead
A Kobold Labourer

Forum posts: 0
File comments: 46
Uploads: 2
any idea how to add outlines to the font?
__________________
"If nearly all guilds want the same class as their MT, we've failed."
Ghostcrawler, 2008-08-12 17:28:59
Gallahead is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 03-31-2009, 09:22 PM  
Brimm
A Kobold Labourer
 
Brimm's Avatar
Interface Author - Click to view interfaces

Forum posts: 0
File comments: 39
Uploads: 5
Tested it tonight in raid, worked like a champ. Pushed live version to 1.5.
Brimm is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 03-31-2009, 11:33 AM  
Brimm
A Kobold Labourer
 
Brimm's Avatar
Interface Author - Click to view interfaces

Forum posts: 0
File comments: 39
Uploads: 5
Beta version is up with the new focus changes, feel free to pick it up and test it. Please post here with any bugs you may find. Please note that the current version is drycoded, since the servers are currently down. Any syntax/major errors will be corrected as soon as the servers come back up.
Brimm is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 03-30-2009, 09:25 PM  
Brimm
A Kobold Labourer
 
Brimm's Avatar
Interface Author - Click to view interfaces

Forum posts: 0
File comments: 39
Uploads: 5
I'll be revamping the Focus mode this week, expect an update soon...
Brimm is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 03-19-2009, 02:08 PM  
SaladFork
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
A most excellent addon, and one I use exclusively for my threat management. With the recent update to include Mirror Image correction, it's irreplaceable. Thanks so much!

Last edited by SaladFork : 03-19-2009 at 02:21 PM.
SaladFork is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 03-06-2009, 08:29 AM  
Brimm
A Kobold Labourer
 
Brimm's Avatar
Interface Author - Click to view interfaces

Forum posts: 0
File comments: 39
Uploads: 5
Tank mode is a mode that, instead of comparing YOUR threat to the current tank's will compare YOUR threat to the highest other player in your group/raid on the mob's threat list. It's useful for tanks that wish to know how much of a threat lead they have.

If you want a uniform color you can set all the thresholds to 0 (this should default to a green color). As for the background, there are no plans to add this at this time. You could look into addons that are designed to add panes on your screen? I don't know any specific mod name but I know I've seen this before.
Brimm is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 03-05-2009, 06:19 PM  
Spahut
A Flamescale Wyrmkin

Forum posts: 123
File comments: 95
Uploads: 0
Few comments.

There is a field called "Tank Mode" when I saw that I thought "Ticking that probably enables tank mode, but what does that do" - pointing at it gets me a tool tip saying "This toggles tank mode" ... how about writing what it does.

Also, it would be nice if you could disable the colors (because it can be hard to see) and have chose a uniform background behind the numbers)
Spahut is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 01-13-2009, 05:06 AM  
GOSYDELIX
A Cliff Giant
 
GOSYDELIX's Avatar

Forum posts: 70
File comments: 25
Uploads: 0
Wow, what a great and a simple mod, i really love it, great job!
I have one thing tho i'm curious about.. Are you planning to add some ingame options for scale and moving around the frame ?
Would be a great update for it.
__________________
GOSYDELIX is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 01-11-2009, 03:16 AM  
Rashiakas
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
Thanks a lot, now it is perfect
Rashiakas is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 01-08-2009, 07:06 PM  
Brimm
A Kobold Labourer
 
Brimm's Avatar
Interface Author - Click to view interfaces

Forum posts: 0
File comments: 39
Uploads: 5
You can manually change the font by directly calling any of the frame objects:

MyThreat_ThreatFrameThreatDiff:SetFont("YourFontPathHere");
MyThreat_ThreatFrameThreatPercDiff:SetFont("YourFontPathHere");
MyThreat_ThreatFrameThreatPlayerName:SetFont("YourFontPathHere");

There are no plans at this time to add an option to change the font in-game.
Brimm is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 01-07-2009, 02:08 PM  
Rashiakas
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
font

Is it possible to change the font face in the code? Or maybe you could add an option.
Rashiakas is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Post A Reply



Category Jump:




The Network:
EQInterface | EQ2Interface | LoTROInterface | MMOInterface | War.MMOUI | WoWInterface | VGInterface | Allakhazam | Thottbot | Wowhead | Zam


©2009 MMOUI / ZAM Network
vBulletin - Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.