Download
(4Kb)
Download
Compatible with Retail, Classic & TBC
Updated: 03-15-24 05:49 PM
Pictures
File Info
Compatibility:
Classic (1.15.1)
Seeds of Renewal (10.2.5)
Classic (1.15.0)
Guardians of the Dream (10.2.0)
WOTLK Patch (3.4.3)
Hot Fix (10.1.7)
Classic (1.14.4)
Fractures in Time (10.1.5)
WotLK Patch (3.4.2)
Dragonflight patch (10.0.7)
Embers of Neltharion (10.1.0)
WOTLK Patch (3.4.1)
Dragonflight patch (10.0.5)
Dragonflight (10.0.2)
Updated:03-15-24 05:49 PM
Created:unknown
Downloads:14,187
Favorites:22
MD5:
Categories:Casting Bars, Cooldowns, The Burning Crusade Classic, Classic - General, WOTLK Classic
10.2.5

CooldownWatch  Updated this week!  Popular! (More than 5000 hits)

Version: 4.3
by: SDPhantom [More]

This is a very simple, very small AddOn, that displays a numerical value on cooldowns and the Buff/DeBuff display on the target frame.

Durations are color-coded by units of time.
White for Seconds
Yellow for Minutes
Orange for Hours

Contact:

I'm open to questions and suggestions. Feel free to message me here or post in the comments.
I'm also available for support on the WoWUIDev Discord, @mention me (SDPhantom) or send a DM.

v4.3 (2021-09-16)
-Multi-ToC build implemented

v4.2 (2021-03-27)
-Support added for using cooldown frames as circular statusbars (text hides when paused)

v4.1 (2019-04-12)
-Added check to make sure the region obtained from CooldownFrames are FontStrings

v4.0 (2014-09-16)
-Rewritten to use new text objects built into cooldown frames.
-Obeys cooldown text settings in Interface Options.

v3.2 (2011-12-01)
-Updated to work with WoW 4.3.0

v3.1 (2010-10-13)
-Optimized lookup table and memory usage.

v3.0 (2009-02-15)
-Rewritten with much smaller and more efficient code.

v2.1 (2008-08-16)
-Added back in code for Blizzard's default UI. (No clue why it bypasses my rewritten detection code.)

v2.0 (2008-08-16)
-Recoded the entire hooking system. (Should work on all UI AddOns now.)

v1.0 (2008-04-18)
-Hooks into the UI function that sets values on "Cooldown" frames.
Post A Reply Comment Options
Unread 04-12-19, 07:59 PM  
SDPhantom
A Pyroguard Emberseer
 
SDPhantom's Avatar
AddOn Author - Click to view AddOns

Forum posts: 2308
File comments: 132
Uploads: 38
Returning to WoW and fixed an issue with the CooldownFrame that's used in the PvP group finder as an honor meter.
__________________
WoWInterface AddOns
"All I want is a pretty girl, a decent meal, and the right to shoot lightning at fools."
-Anders (Dragon Age: Origins - Awakening)
Report comment to moderator  
Reply With Quote
Unread 11-16-14, 01:05 AM  
ramzax
A Deviate Faerie Dragon
AddOn Author - Click to view AddOns

Forum posts: 10
File comments: 11
Uploads: 1
Originally Posted by SDPhantom
I'm sitting at a crossroads now regarding the future of this addon. Starting with WoD, cooldown frames will start to display their own countdown text by default. Right now, this is only enabled on the actionbars.

My choices are to either expand on this feature by enabling it for all other cooldown frames and resizing the text to fit in the target buff frames or retire the addon completely. Suggestions are welcome.
personally I love the idea of expanding blizz's cooldown option to other frames like target & focus buffs/debuffs
Report comment to moderator  
Reply With Quote
Unread 09-29-14, 01:35 PM  
SDPhantom
A Pyroguard Emberseer
 
SDPhantom's Avatar
AddOn Author - Click to view AddOns

Forum posts: 2308
File comments: 132
Uploads: 38
I'm sitting at a crossroads now regarding the future of this addon. Starting with WoD, cooldown frames will start to display their own countdown text by default. Right now, this is only enabled on the actionbars.

My choices are to either expand on this feature by enabling it for all other cooldown frames and resizing the text to fit in the target buff frames or retire the addon completely. Suggestions are welcome.
__________________
WoWInterface AddOns
"All I want is a pretty girl, a decent meal, and the right to shoot lightning at fools."
-Anders (Dragon Age: Origins - Awakening)
Report comment to moderator  
Reply With Quote
Unread 01-09-14, 04:04 PM  
SDPhantom
A Pyroguard Emberseer
 
SDPhantom's Avatar
AddOn Author - Click to view AddOns

Forum posts: 2308
File comments: 132
Uploads: 38
Originally Posted by reehay
any way to exclude the text on target's buffs? i dont care about those numbers, just my own.
The method used to make sure this addon works with all custom UIs makes it difficult if not impossible for it to tell the difference between one CoolDown frame and another.
__________________
WoWInterface AddOns
"All I want is a pretty girl, a decent meal, and the right to shoot lightning at fools."
-Anders (Dragon Age: Origins - Awakening)
Report comment to moderator  
Reply With Quote
Unread 11-23-13, 02:13 PM  
reehay
A Murloc Raider

Forum posts: 9
File comments: 11
Uploads: 0
any way to exclude the text on target's buffs? i dont care about those numbers, just my own.
Report comment to moderator  
Reply With Quote
Unread 03-13-13, 01:43 AM  
SDPhantom
A Pyroguard Emberseer
 
SDPhantom's Avatar
AddOn Author - Click to view AddOns

Forum posts: 2308
File comments: 132
Uploads: 38
Re: hi :)

Originally Posted by hoslam1
Thank you for answering my questions very kindly.
I have one more question to ask
The global cooltime and specific skill cool time are displayed at once.
Is there any way to change this so that I see only the skill cooltime?
The only way I can think of is to check the duration of a cooldown and only act if it's greater than the length of the GCD. If I remember right, the GCD is 1.5 seconds, so if you find the following line and add the condition as noted, this should apply the desired effect.

Target line: (around line 52)
Code:
if start~=nil and duration~=nil then
	ptr[1]=start;
	ptr[2]=duration;
end
Change to the following:
Code:
if start~=nil and duration~=nil and duration>1.5 then
	ptr[1]=start;
	ptr[2]=duration;
end
__________________
WoWInterface AddOns
"All I want is a pretty girl, a decent meal, and the right to shoot lightning at fools."
-Anders (Dragon Age: Origins - Awakening)
Last edited by SDPhantom : 03-13-13 at 01:52 AM.
Report comment to moderator  
Reply With Quote
Unread 03-08-13, 04:19 PM  
hoslam1
A Murloc Raider
 
hoslam1's Avatar

Forum posts: 4
File comments: 27
Uploads: 0
hi :)

Thank you for answering my questions very kindly.
I have one more question to ask
The global cooltime and specific skill cool time are displayed at once.
Is there any way to change this so that I see only the skill cooltime?
Report comment to moderator  
Reply With Quote
Unread 03-08-13, 11:28 AM  
SDPhantom
A Pyroguard Emberseer
 
SDPhantom's Avatar
AddOn Author - Click to view AddOns

Forum posts: 2308
File comments: 132
Uploads: 38
Re: hi :)

Originally Posted by hoslam1
Is there a way to increase the counter number size?
I tried replacing the "NumberFontNormalLarge", I want more big size
I suppose you can add ptr:SetTextHeight(24); after ptr:SetPoint("TOP");
As a reference to the number used for the font height, NumberFontNormalSmall is 12, NumberFontNormal is 14, NumberFontNormalLarge is 16, and NumberFontNormalHuge is 30.
__________________
WoWInterface AddOns
"All I want is a pretty girl, a decent meal, and the right to shoot lightning at fools."
-Anders (Dragon Age: Origins - Awakening)
Report comment to moderator  
Reply With Quote
Unread 03-08-13, 05:03 AM  
hoslam1
A Murloc Raider
 
hoslam1's Avatar

Forum posts: 4
File comments: 27
Uploads: 0
hi :)

Is there a way to increase the counter number size?
I tried replacing the "NumberFontNormalLarge", I want more big size
Report comment to moderator  
Reply With Quote
Unread 02-18-09, 09:30 PM  
SDPhantom
A Pyroguard Emberseer
 
SDPhantom's Avatar
AddOn Author - Click to view AddOns

Forum posts: 2308
File comments: 132
Uploads: 38
Originally posted by Jeania
That's part of the cooldown that I need is knowing how long until my potions cooldowns are over (so I can use another type (say health to mana for example) in combat...This will or won't show? (lol confused, that's why I'm asking)
This addon will show the text for any cooldown timer when the timer starts, even on potions.
__________________
WoWInterface AddOns
"All I want is a pretty girl, a decent meal, and the right to shoot lightning at fools."
-Anders (Dragon Age: Origins - Awakening)
Report comment to moderator  
Reply With Quote
Unread 02-15-09, 05:19 AM  
Jeania
An Aku'mai Servant
 
Jeania's Avatar

Forum posts: 39
File comments: 170
Uploads: 0
That's part of the cooldown that I need is knowing how long until my potions cooldowns are over (so I can use another type (say health to mana for example) in combat...This will or won't show? (lol confused, that's why I'm asking)
__________________
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Words to Remember:

"You never really learn much from hearing yourself talk." ~ George Clooney

*۝*Jeania/Anjelie ~ Dalaran*۝*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Report comment to moderator  
Reply With Quote
Unread 02-15-09, 03:17 AM  
SDPhantom
A Pyroguard Emberseer
 
SDPhantom's Avatar
AddOn Author - Click to view AddOns

Forum posts: 2308
File comments: 132
Uploads: 38
Originally posted by Jeania
So let's say I just used a potion (which I keep in my normal bars on the side) it'll show me a countdown number over it?

Oh geez, if that's true this would be a miracle! lol seriously, I love the idea Is it updated/still working?
I still use it and it seems to work fine.
The game doesn't start the cooldown on potions until you're out of combat.
Blizzard's change didn't seem to affect this addon at all.
The timer will appear and count down as normal when the cooldown starts.
__________________
WoWInterface AddOns
"All I want is a pretty girl, a decent meal, and the right to shoot lightning at fools."
-Anders (Dragon Age: Origins - Awakening)
Last edited by SDPhantom : 11-13-12 at 06:32 PM.
Report comment to moderator  
Reply With Quote
Unread 02-15-09, 12:18 AM  
Jeania
An Aku'mai Servant
 
Jeania's Avatar

Forum posts: 39
File comments: 170
Uploads: 0
So let's say I just used a potion (which I keep in my normal bars on the side) it'll show me a countdown number over it?

Oh geez, if that's true this would be a miracle! lol seriously, I love the idea Is it updated/still working?
__________________
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Words to Remember:

"You never really learn much from hearing yourself talk." ~ George Clooney

*۝*Jeania/Anjelie ~ Dalaran*۝*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: