 |
| Welcome to Elitist Jerks |
|
If this is your first visit, please be sure to check out the FAQ and the forum rules. Users must register to post and new registrations are subject to a one day "mute" period to get acquainted with the community.
To start viewing messages, select the forum that you want to visit from the selection below.
|
05/31/07, 4:27 AM
|
#151 (permalink)
|
|
King Hippo
Tauren Druid
Twisting Nether (EU)
|
Originally Posted by Antiarc
That's an interface issue - you could easily have two threat windows for two targets.
|
Also, if you REALLY wanted to, it would be possible to make an interface that more or less copied KTM behaviour I suppose?
|
|
|
|
|
|
05/31/07, 5:40 AM
|
#152 (permalink)
|
|
Still alive
Human Rogue
Cenarion Circle
|
Originally Posted by Daboran
Also, if you REALLY wanted to, it would be possible to make an interface that more or less copied KTM behaviour I suppose?
|
Sure, the KTM interface isn't really terribly complex.
|
|
|
|
|
|
05/31/07, 5:52 AM
|
#153 (permalink)
|
|
Von Kaiser
Gnome Hunter
Magtheridon (EU)
|
Maybe if you could add like boxes that UF could use (like Pitbull) that can be put up beisde the MT and the MT targets so you can see who is close to take aggro on those? This would however probobly require a pretty big scale but still it could be doable.
And I could not find the known bugs but if I misdirect it normally makes alot of errors.
|
|
|
|
|
05/31/07, 6:40 AM
|
#154 (permalink)
|
|
Maniq is awesome.
Troll Rogue
Destromath (EU)
|
Felt inspired by a few posts... fired up mspaint and came up with this:
feel free to rip it Antiarc 
|
|
|
|
|
|
05/31/07, 10:32 AM
|
#155 (permalink)
|
|
Don Flamenco
Blood Elf Rogue
Magtheridon (EU)
|
|
Originally Posted by Kyth
Also I echo perhaps considering some of the logic that DoTimer uses to distinguish between targets by raid symbol (although it's imperfect, it's pretty darn useful if you just march through symbols rather than re-symbol'ing each time to mark the new kill target.)
|
Unfortunatly, the combot log doesn't display sex/level/raidicon and just name. You can compare known debuffs to find out what you're targetting but that corruption tick in the combat log isn't necessarily damaging what you're targetting.
|
|
|
|
|
|
05/31/07, 11:56 AM
|
#156 (permalink)
|
|
Side of Bacon of Light
Draenei Paladin
Stormrage
|
I don't know if you want bug reports here, but last night while soloing with my hunter I noticed that several times my pets threat wouldn't display, all I would see is my own. I think that the issues only arose if combat was initiated while I was mounted (so my mount wasn't present), then as I dismounted it failed register the presence of my pet.
|
|
|
|
|
|
05/31/07, 11:58 AM
|
#157 (permalink)
|
|
Bald Bull
|
After poking around in the Threat-1.0 code for a bit, I'm pretty impressed. It's somewhat amazing how little code it actually takes to implement with a decent design, and it looks fairly easy to write a client for it -- it took somewhere under 5 minutes to write the attached (almost) minimal threat broadcaster, which is something that was "not worth the time" with KTM (although I'm not sure if was even worth the time in this case, as Omen's performance impact is pretty close to zero).
|
|
|
|
|
|
05/31/07, 1:16 PM
|
#158 (permalink)
|
|
Still alive
Human Rogue
Cenarion Circle
|
Originally Posted by s4dfish
I don't know if you want bug reports here, but last night while soloing with my hunter I noticed that several times my pets threat wouldn't display, all I would see is my own. I think that the issues only arose if combat was initiated while I was mounted (so my mount wasn't present), then as I dismounted it failed register the presence of my pet.
|
Yeah, I had someone else report the same issue. I'll hijack my wife's hunter tonight and see if I can solve some of those problems
Originally Posted by Shalas
After poking around in the Threat-1.0 code for a bit, I'm pretty impressed. It's somewhat amazing how little code it actually takes to implement with a decent design, and it looks fairly easy to write a client for it -- it took somewhere under 5 minutes to write the attached (almost) minimal threat broadcaster, which is something that was "not worth the time" with KTM (although I'm not sure if was even worth the time in this case, as Omen's performance impact is pretty close to zero).
|
Hm - is the zip missing something? ThreatBroadcast.lua only contains four lines.
Edit: Aha, I see. You don't need an addon to just broadcast - just install Threat-1.0 from the Ace repository as a disembedded lib and you get broadcasting for free. 
Last edited by Antiarc : 05/31/07 at 2:29 PM.
|
|
|
|
|
|
05/31/07, 1:35 PM
|
#159 (permalink)
|
|
Piston Honda
Tauren Druid
Ravencrest (EU)
|
Faerie Fire for druids has 6 ranks in the Druid.lua file. There only exists 5 ranks of the ability.
|
Moderator and Organizer on The Druid Wiki
http://druid.wikispaces.com
The Druid Wiki is currently outdated and is scheduled for a major WotLK overhaul. If you are looking for information on druids, i would suggest browsing these forums for now.
|
|
|
|
05/31/07, 1:45 PM
|
#160 (permalink)
|
|
Still alive
Human Rogue
Cenarion Circle
|
Originally Posted by Athinira
Faerie Fire for druids has 6 ranks in the Druid.lua file. There only exists 5 ranks of the ability.
|
Thanks - I've verified and corrected this. 
|
|
|
|
|
|
05/31/07, 1:56 PM
|
#161 (permalink)
|
|
Piston Honda
Tauren Druid
Ravencrest (EU)
|
Also, the innate threat of the last rank of Maul (322) has never been verified 100%. If you are lucky, i might find the time to do it later ;)
|
Moderator and Organizer on The Druid Wiki
http://druid.wikispaces.com
The Druid Wiki is currently outdated and is scheduled for a major WotLK overhaul. If you are looking for information on druids, i would suggest browsing these forums for now.
|
|
|
|
05/31/07, 2:39 PM
|
#162 (permalink)
|
|
Bald Bull
|
Originally Posted by Antiarc
Hm - is the zip missing something? ThreatBroadcast.lua only contains four lines.
|
Unless I'm missing something significant about Threat, that's all it takes (almost -- it needs one more line to actually associate the Threat instance with the addon for AceDB's magic). Merely initializing Threat does everything you need to if you just want to send your threat numbers and don't care about ever actually displaying them.
Originally Posted by Antiarc
Edit: Aha, I see. You don't need an addon to just broadcast - just install Threat-1.0 from the Ace repository as a disembedded lib and you get broadcasting for free. 
|
Ah, I somehow missed that while trying to find it in the code because I ignored what I assumed was boilerplate code at the top.
|
|
|
|
|
|
05/31/07, 3:00 PM
|
#163 (permalink)
|
|
Glass Joe
|
Priest Module
Hello Antiarc,
Ive been taking a look at the priest module code and have a question.
It does not appear that Vamp Embrace is handled with any of the threat modifiers contained within the priest module. My understanding of VE was that it was now only affected by shadow affinity and not by both shadow affinity and Silent Resolve.
The skill description of Shadow Affinity implies that it does effect VE threat although not directly.
Shadow Affinity
Rank 3
"Reduces the threat generated by your Shadow spells by 25%."
|
Is this a simple overlook for spells or is it intentional?
Below is the relevant code
Priest.lua Line 36-39
local ShadowSpellsEN = {
"Prayer of Shadow Protection", "Devouring Plague", "Fade", "Hex of Weakness", "Mind Blast", "Mind Control", "Mind Flay", "Mind Soothe", "Mind Vision", "Psychic Scream",
"Shadow Protection", "Shadow Word: Death", "Shadow Word: Pain", "Shadowfiend", "Shadowguard", "Touch of Weakness", "Vampiric Touch"
}
Priest.lua Line 73-75
for _,v in ipairs(ShadowSpellsEN) do
self.abilityThreatMods[BS[v]] = modForShadowAffinity
end
Thanks and i look forward to a final vers of this mod.
|
|
|
|
|
|
05/31/07, 3:38 PM
|
#164 (permalink)
|
|
Still alive
Human Rogue
Cenarion Circle
|
SvK:
If Vamp Embrace causes threat on-cast, I'll need to handle that specifically. However, Vamp Embrace's threat generation through health gains is already handled in the general case as a heal. If Shadow Affinity does in fact reduce the threat of heals from VE (making each point healed from VE cause 0.375 threat), then I can add that in pretty easily. I'd like to have that verified before I do add it, though.
|
|
|
|
|
|
05/31/07, 3:40 PM
|
#165 (permalink)
|
|
Still alive
Human Rogue
Cenarion Circle
|
Originally Posted by Shalas
Ah, I somehow missed that while trying to find it in the code because I ignored what I assumed was boilerplate code at the top.
|
The Threat class core monitors in/out of combat status and automatically broadcasts threat levels while in combat; the intent is that mod authors don't need to worry about any kind of comms or anything outside of simply listening to and handling Threat_ThreatUpdated events.
|
|
|
|
|
|
05/31/07, 3:51 PM
|
#166 (permalink)
|
|
Glass Joe
|
it was my understanding that every spell cast gives a particular amount of threat (although for VE it is most likely not significant). i was just wondering if you didn't include VE because there was no specific way to know how much threat the spell cast cost.
I suppose at the end of the day the threat produced by casting VE is minimal and can not be calculated. i was just wondering if you left it out on purpose is all.
Im not talking about the heals number that VE heals for just the casting of VE on a mob. (thinking about it again it really makes me feel as if it doesn't need to be included however i was toilet trained at gunpoint so)
Anywho thanks.
|
|
|
|
|
|
05/31/07, 3:56 PM
|
#167 (permalink)
|
|
Still alive
Human Rogue
Cenarion Circle
|
Originally Posted by SvK
i was just wondering if you didn't include VE because there was no specific way to know how much threat the spell cast cost.
|
This
As soon as I have a threat value for it, I'll include it (and modify it with Shadow Affinity)
Edit: Kalman tested this for me and it's less than 5 threat, if any. Just going to ignore it for now.
Last edited by Antiarc : 05/31/07 at 7:34 PM.
|
|
|
|
|
|
05/31/07, 4:34 PM
|
#168 (permalink)
|
|
Von Kaiser
Draenei Warrior
Cenarion Circle
|
I'm not sure if I'm doing something wrong, but a warrior's taunt is not crediting the warrior with the threat of the mob's target prior to the taunt. In fact, it seems to be just giving the warrior a static (and small ~couple hundred) amount of threat.
Edit: Instead of creating another post, figure I'd edit with an additional question: what is the meaning behind the different textures of the bars? I was running KZ with Omen yesterday (around 6 of us had Omen running) and of the 5 bars up on the GUI, 2 had rounded textures (like bubble buttons) and 3 were flat. Is this giving me information that I'm not enterpreting yet?
|
|
|
|
|
|
05/31/07, 4:58 PM
|
#169 (permalink)
|
|
Still alive
Human Rogue
Cenarion Circle
|
Originally Posted by Exiliad
I'm not sure if I'm doing something wrong, but a warrior's taunt is not crediting the warrior with the threat of the mob's target prior to the taunt. In fact, it seems to be just giving the warrior a static (and small ~couple hundred) amount of threat.
|
There was a problem with Taunt that I just fixed. It wasn't actually adding anything due to its using a depricated API method - the few hundred was from you smacking the mob
|
Edit: Instead of creating another post, figure I'd edit with an additional question: what is the meaning behind the different textures of the bars? I was running KZ with Omen yesterday (around 6 of us had Omen running) and of the 5 bars up on the GUI, 2 had rounded textures (like bubble buttons) and 3 were flat. Is this giving me information that I'm not enterpreting yet?
|
The textures should be the same. Very odd that they wouldn't be. I'll be doing more GUI work soon, so hopefully I can track that down and nail it.
|
|
|
|
|
|
05/31/07, 7:06 PM
|
#170 (permalink)
|
|
Piston Honda
|
Is it up to the client of threatlib to determine if your target is in melee range or ranged?
Playing around with making a client and didn't want to duplicate work done in the library.
|
|
|
|
|
|
05/31/07, 7:08 PM
|
#171 (permalink)
|
|
Still alive
Human Rogue
Cenarion Circle
|
I haven't done anything in that direction yet, chase. My gut instinct is that it's something that should be in the GUI, but if we can work out a good method of range detection (BigWigs does some stuff like that for Gruul...) then perhaps I can incorporate general methods into the library for all to use.
Edit: I just added ThreatLib:UnitInMeleeRange(unitID) to the trunk. It's drycoded and untested, but it's something. 
Last edited by Antiarc : 05/31/07 at 7:30 PM.
|
|
|
|
|
|
05/31/07, 8:21 PM
|
#172 (permalink)
|
|
Piston Honda
Tauren Shaman
Twisting Nether (EU)
|
Is it possible to have an option for limiting the bar count of the threat meter? We managed to get a lot of people in our guild to use Omen and now I'm seeing 12+ people on the list. It's actually bugged at that number, name texts overlap each other at the bottom line. I would like to see the top 7 people on the list and filter out non tanking classes like Priests, Warlocks, Rogues, Shamans, Paladins. An option for adding names to the filter would be even better if I want to see the tank druids and not the healer/dps ones.
I really like this addon and hope to see it's getting bigger and better 
|
|
|
|
|
|
05/31/07, 8:26 PM
|
#173 (permalink)
|
|
Still alive
Human Rogue
Cenarion Circle
|
All that and more is coming, Nemaa. Right now, I'm not putting a lot time into the GUI until ThreatLib itself is solid.
|
|
|
|
|
|
|