Download
(16Kb)
Download
Updated: 01-31-10 01:14 PM
Pictures
File Info
Updated:01-31-10 01:14 PM
Created:04-21-09 01:35 PM
Downloads:31,926
Favorites:139
MD5:

TellMeWhen (Fan Update)  Popular! (More than 5000 hits)

Version: 1.2.1
by: Ooze [More]

TELLMEWHEN IS NO LONGER BEING UPDATED ON THIS PAGE, PLEASE REFER TO THE ORIGINAL ADDON PAGEFOR FUTURE UPDATES.

Version 1.2.1 (Fan Update)
- Bugfixes

Version 1.2.0 (Fan Update)
- Added options for targetoffocus and targetofpet
- Added "/tmw options" as a shortcut to options menu

(Major thanks to Oodyboo for the following changes)
- Changed how spec settings are saved
- Editbox for "Choose spell/buff/item" retains previous entered value
- Supports 8 bars instead of the old 4
- Added primary/secondary spec toggles for each bar
- Disabled bars and icons don't process everything

Version 1.1.6 (Fan Update)
- Fixed a bug where pets caused an endless stream of errormessages when dismissed/killed
- Fixed a bug where Buff/Debuff set to "Show when Absent" was acting as it was set to "Always Visible"

Version 1.1.5 (Fan Update)
- Buffs/Debuffs set to Always Visible now indicates if they are missing
- Icontextures should update correctly now

Version 1.1.4 (Fan Update)
- Dualspec Support Added

Version 1.1.3 (Fan Update)
- Rewrote Buffcheck to use UNIT_AURA instead of COMBAT_LOG_EVENT_UNFILTERED.
- Removed a bunch of variables that was created, but not used.

Version 1.1.1 (Fan Update)
- 3.1 Support (Calls to UnitAura Updated)
- Added support for showing multiple Buffs/Debuffs on a single icon, seperated them with ;
- Added support for spellIDs and itemIDs
- Added option "always" to BuffShowWhen & CooldownShowWhen

Version 1.1
- Added cooldown and buff/debuff timers. Compatible with OmniCC.

Version 1.0.1
- Updated for WoW 3.0

Version 1.0
- Hello world!
Post A Reply Comment Options
Unread 11-04-09, 10:32 AM  
Tinuviel
A Defias Bandit
 
Tinuviel's Avatar

Forum posts: 3
File comments: 210
Uploads: 0
My icons are resetting to a different position for my primary spec every time I switch specs on my druid. There are no errors being thrown.
Report comment to moderator  
Reply With Quote
Unread 11-03-09, 01:32 AM  
Taigen
A Defias Bandit
 
Taigen's Avatar

Forum posts: 3
File comments: 82
Uploads: 0
Error

Got this error today every time I logged onto my main, but didn't get it on my alt. Made me wonder if it had something to do with dual-spec or the fact that i have some frames set for the first spec and some frames set for the other?

Date: 2009-11-03 02:27:51
ID: 1
Error occured in: Global
Count: 1
Message: ..\AddOns\TellMeWhen\TellMeWhen.lua line 567:
Usage: TellMeWhen_Group3_Icon1:SetAlpha(alpha 0 to 1)
Debug:
[C]: ?
[C]: SetAlpha()
TellMeWhen\TellMeWhen.lua:567: TellMeWhen_Icon_BuffCheck()
TellMeWhen\TellMeWhen.lua:479: TellMeWhen_Icon_StatusCheck()
TellMeWhen\TellMeWhen.lua:461: TellMeWhen_Icon_Update()
TellMeWhen\TellMeWhen.lua:245: TellMeWhen_Group_Update()
TellMeWhen\TellMeWhen.lua:184: TellMeWhen_Update()
TellMeWhen\TellMeWhen.lua:95:
TellMeWhen\TellMeWhen.lua:81
Report comment to moderator  
Reply With Quote
Unread 11-01-09, 11:04 PM  
Taigen
A Defias Bandit
 
Taigen's Avatar

Forum posts: 3
File comments: 82
Uploads: 0
Maelstrom

Yes, yes, of course... it does track Maelstrom. But it tracks it from the first stack and I am asking the author/updater to have it ONLY track at 5, as the talent intends. At this point I am still having to look closely at the icon to see how many stacks there are. Thanks for trying to help though--appreciate it.
Report comment to moderator  
Reply With Quote
Unread 11-01-09, 05:54 PM  
scollinsgt
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
warlock conflagrate

How do you get conflagrate to work properly? It is a cooldown ability and a reactive-ish ability (target has to have immolate debuff or shadowflame debuff).

I added some quick code to fix this. I made some additions here.

function TellMeWhen_Icon_ReactiveCheck(icon)
local usable, nomana = IsUsableSpell(TellMeWhen_GetSpellNames(icon.name,1));
local start, timeLeft, enabled = GetSpellCooldown(icon.name);
if (icon.name == "Conflagrate") then
if (TellMeWhen_Icon_HasDebuff("Immolate") and timeLeft <1.5 and usable ==1) then
icon:SetAlpha(icon.usableAlpha);
else
icon:SetAlpha(icon.unusableAlpha);

end
elseif ( timeLeft <1.5 and usable ==1 ) then
icon:SetAlpha(icon.usableAlpha);
elseif ( not usable and nomana ) or ( timeLeft > 1.5 ) then
icon:SetAlpha(icon.unusableAlpha);
end
end

function TellMeWhen_Icon_HasDebuff(spellName)
local buffName, _, iconTexture, count, _, duration, expirationTime, unitCaster = UnitDebuff("target", spellName);
return buffName and (unitCaster == "player")
end
Last edited by scollinsgt : 11-02-09 at 09:25 PM.
Report comment to moderator  
Reply With Quote
Unread 11-01-09, 08:31 AM  
blitzseed
A Kobold Labourer

Forum posts: 0
File comments: 70
Uploads: 0
Originally posted by Taigen
I have a shaman as my main and there's a few things I hope you'll add:

2. But by far, my BIGGEST concern is about Maelstrom weapon. This is an ehancement talent that is really only used at 5 stacks. There does not seem to be a way to tell the mod to only cause the icon to appear when there are FIVE stacks.. not just one. I would think this would also be of some concern to arcane mages stacking Arcane Blast (i believe that's the name of the spell but not totally certain).
Have you tried using the spell http://www.wowhead.com/?spell=53817 or its spell ID "spell:53817" to track Maelstrom weapon? I know as a DK it will track the number of Bone shield charges I have left and the stacks of the [Victor's Call] by using the spell buff Risen Fury from [Victor's Call]. Give the spell ID a try and see if it works.


Edit: i think tell me when is not working with Maelstrom weapon is b/c the talent and the stacking buff has the same name and tell me when does not know what one to use so try it with the spell DI "spell:53817" i think it will work then. also i don't think it will show when it just have 5 stack, it will show all of them starting at 1 ..2 ..3..4 ..5 then will stay at 5 till it is used.
Last edited by blitzseed : 11-01-09 at 10:41 AM.
Report comment to moderator  
Reply With Quote
Unread 11-01-09, 05:12 AM  
Taigen
A Defias Bandit
 
Taigen's Avatar

Forum posts: 3
File comments: 82
Uploads: 0
I have a shaman as my main and there's a few things I hope you'll add:

1. Totem support for (resto) Mana Tide Totem. The reason this would be good is sometimes, in the rush of a fight, you need mana back fast and dont have time to watch when Mana Tide will expire...or you see it, then forget a second later and if there was an icon there that would remain until you had time to deal with it, you could put mana stream back down.
--support for when Magma totem is missing would be great too, but a lesser concern as TotemTimers is able to track this... but again, same problem as with Mana Tide. Sometimes I see it's gone, but something distracts me and I forget. If there was an icon there until I put it down, it wouldn't be possible for me to forget.

2. But by far, my BIGGEST concern is about Maelstrom weapon. This is an ehancement talent that is really only used at 5 stacks. There does not seem to be a way to tell the mod to only cause the icon to appear when there are FIVE stacks.. not just one. I would think this would also be of some concern to arcane mages stacking Arcane Blast (i believe that's the name of the spell but not totally certain).

3. A smaller, tiny suggestion... could you also have the option to show some buffs only in a raid? I'd like for the addon to remind me when my flask runs out but not during heroic Nexus.

But I must say.. THANK YOU for updating this mod!!! I have been looking for something like this addon for quite a while but it was so old. I appreciate the hard work. I hope you'll take all suggestions into consideration, but please, please, please...if you only have time for one thing...make it Maelstrom =P
Report comment to moderator  
Reply With Quote
Unread 10-30-09, 09:07 PM  
oody
A Kobold Labourer

Forum posts: 0
File comments: 18
Uploads: 0
Originally posted by Hambubger
I've run into a really annoying bug that causes item item cooldown timers to disappear whenever I zone into a new zone or reload my ui. Note that this does not occur for ability cooldowns. If there is a way to fix this with the current version, I would appreciate if someone could tell me.

However, I suspect that a newer update must be released to fix this. If anyone wants to improve the mod, here is a bug that should definitely be looked at and fixed since it's so annoying.

Thanks.
I have reproduced this and I'll try to get it fixed soon.
Last edited by oody : 10-30-09 at 09:11 PM.
Report comment to moderator  
Reply With Quote
Unread 10-30-09, 09:01 PM  
oody
A Kobold Labourer

Forum posts: 0
File comments: 18
Uploads: 0
Originally posted by beserk1
Interesting...

thats what I have too, but the icon dont "disappear" when the buff is present. There is no different to the icon rather the buff is present or not.

Is it suppose to be like that?
I thought you would have read Ooze's post more closely. He gave you the exact settings you need.

The setting you have incorrect is "Unit to watch." It should be set to "player", not "target"
Report comment to moderator  
Reply With Quote
Unread 10-30-09, 09:00 PM  
oody
A Kobold Labourer

Forum posts: 0
File comments: 18
Uploads: 0
Re: Warriors

Originally posted by Zhurk
Hi, this is one of my favorites addons.

I just have one request. It would be great if you could implement it because it's really important for me.

Abilities such as Overpower and Revenge work as reactive spells, but they also are contrained by cooldowns. The icon should only appear if both conditions were met: reactive and off cooldown.

As a prot warrior, not having this feature, makes me look down at the action bar, just to see when Revenge is ready for use.

It's very very very annoying so, I BEG you, pls pls pls, include this feature

Thank you in advance, in behalf of all warriors, I'm sure
This is also something that I would like to see. After looking at the code however, it probably needs to be re-written almost from scratch to fix some issues, and in the process to add a host of logic rules instead of separate individual "check X, Y, or Z" Other features I am considering are things like "Show when absent or 10 seconds left" so Buff icons appear with timers just before they fade. Others have also requested rage/energy/mana checks for abilities as well. A well thought rewrite would create a customizable logic that could be applied to the icons in various ways, adding a lot of flexibility to the addon.
Report comment to moderator  
Reply With Quote
Unread 10-30-09, 09:45 AM  
Zhurk
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Warriors

Hi, this is one of my favorites addons.

I just have one request. It would be great if you could implement it because it's really important for me.

Abilities such as Overpower and Revenge work as reactive spells, but they also are contrained by cooldowns. The icon should only appear if both conditions were met: reactive and off cooldown.

As a prot warrior, not having this feature, makes me look down at the action bar, just to see when Revenge is ready for use.

It's very very very annoying so, I BEG you, pls pls pls, include this feature

Thank you in advance, in behalf of all warriors, I'm sure
Last edited by Zhurk : 10-30-09 at 10:51 AM.
Report comment to moderator  
Reply With Quote
Unread 10-27-09, 11:32 AM  
Ooze
A Kobold Labourer
 
Ooze's Avatar
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 43
Uploads: 1
Re: Re: Re: hey

Originally posted by blitzseed
: ) cant wait ><
The annoying part is that i need to rewrite alot of the addon to get ButtonFacade working =/
Report comment to moderator  
Reply With Quote
Unread 10-25-09, 02:45 PM  
blitzseed
A Kobold Labourer

Forum posts: 0
File comments: 70
Uploads: 0
Re: Re: hey

Originally posted by Ooze
It's on my todo list.
: ) cant wait ><
Report comment to moderator  
Reply With Quote
Unread 10-25-09, 02:10 PM  
Ooze
A Kobold Labourer
 
Ooze's Avatar
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 43
Uploads: 1
Re: hey

Originally posted by blitzseed
hey, I use this addon allot but one thing that I don't like so much is how it stands out so much in my UI >< so I would like to know if ButtonFacade support can be added to the addon. But if you don't want to I'm still going to be using anyways just would be nice : )

sorry if this was asked for already
It's on my todo list.
Report comment to moderator  
Reply With Quote
Unread 10-25-09, 02:00 PM  
blitzseed
A Kobold Labourer

Forum posts: 0
File comments: 70
Uploads: 0
hey

hey, I use this addon allot but one thing that I don't like so much is how it stands out so much in my UI >< so I would like to know if ButtonFacade support can be added to the addon. But if you don't want to I'm still going to be using anyways just would be nice : )

sorry if this was asked for already
Report comment to moderator  
Reply With Quote
Unread 10-24-09, 12:39 PM  
Hambubger
A Kobold Labourer

Forum posts: 1
File comments: 1
Uploads: 0
I've run into a really annoying bug that causes item item cooldown timers to disappear whenever I zone into a new zone or reload my ui. Note that this does not occur for ability cooldowns. If there is a way to fix this with the current version, I would appreciate if someone could tell me.

However, I suspect that a newer update must be released to fix this. If anyone wants to improve the mod, here is a bug that should definitely be looked at and fixed since it's so annoying.

Thanks.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: