Addon Information
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)
Author:
Version:
2.6
Date:
06-10-2009 03:00 AM
Size:
5.84 Kb
Downloads:
1,930
Favorites:
32
MD5:
Pictures
Granted the screenshot takes the cursor out...
CursorCooldown
CursorCooldown

Adds a small texture to the bottom right side of the cursor showing the Global Cooldown and the spell that caused it.

No options to configure scale or size, must edit lua file to do that.

Thanks to cncfanatics for the push in the right direction and ideas to start off on.
  Change Log - CursorCooldown
2.6:
Add in slash command /ccd to change the cooldown texture from spell to a static image of the wow icon.
use /ccd texture for spell texture or /ccd solid for the wow icon.
--You can change this icon, line 151 to something else.
  Optional Files - CursorCooldown
Sorry, there are currently no optional files available.
  Archived Versions - CursorCooldown
File Name
Version
Size
Author
Date
2.5
5kB
orionshock
05-28-2009 03:38 AM
2.4a
5kB
orionshock
05-28-2009 02:51 AM
2.4
3kB
orionshock
05-26-2009 06:20 AM
2.3
3kB
orionshock
05-26-2009 06:06 AM
2.3
3kB
orionshock
07-28-2008 02:49 AM
  Comments - CursorCooldown
Post A Reply Comment Options
Old 08-08-2009, 05:27 AM  
orionshock
A Fallenroot Satyr
 
orionshock's Avatar
Interface Author - Click to view interfaces

Forum posts: 28
File comments: 49
Uploads: 5
Re: Moving icon?

Quote:
Originally posted by Caramirdan
Hi, is there an easy way to move the GCD icon to a point above the cursor? When I have my cursor on the cast bar, the GCD icon falls off the bottom of the screen.
Either way, thanks for this--should be a Blizz option LOL
At line 126 --
Code:
frame:SetScript("OnUpdate", function(self, update)

	x, y = GetCursorPosition();

	x = x + 15

	y = y - 40

	Scale = UIParent:GetScale();

	sX = x / Scale;

	sY = y / Scale;

	self:SetPoint("BOTTOMLEFT", UIParent, "BOTTOMLEFT", sX, sY);
Lines, 128, 129, 133, are the lines you want to adjust. Ln 128/129's end numbers are the offsets, if you want to move the texture to the other side of the mouse you'll need to redo the SetPoint(...) call on line 133

http://www.wowwiki.com/API_Region_SetPoint

should help
__________________
Author of GuildCraft, SickOfClickingDailies

"I was there in the beginning... and things were very different back then" --An Echo from a time before.
orionshock is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-07-2009, 08:45 PM  
Caramirdan
A Kobold Labourer

Forum posts: 0
File comments: 6
Uploads: 0
Moving icon?

Hi, is there an easy way to move the GCD icon to a point above the cursor? When I have my cursor on the cast bar, the GCD icon falls off the bottom of the screen.
Either way, thanks for this--should be a Blizz option LOL
Caramirdan is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 06-18-2009, 08:30 AM  
trclocke
A Kobold Labourer
Interface Author - Click to view interfaces

Forum posts: 0
File comments: 65
Uploads: 1
beautiful.

Thanks a ton for this. Very helpful as a healer with raid frames in an area of my screen nowhere near my keybinds.
trclocke is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 06-14-2009, 09:29 PM  
orionshock
A Fallenroot Satyr
 
orionshock's Avatar
Interface Author - Click to view interfaces

Forum posts: 28
File comments: 49
Uploads: 5
local solidTexture = "Interface\\Icons\\Temp"

Look up on wowwiki for an icon or provide one yourself. You'll need to just change the "Interface\\Icons\\Temp" part to where the image is in your interface\addons folders.

This thread might help

http://forums.wowace.com/showthread.php?t=15439
__________________
Author of GuildCraft, SickOfClickingDailies

"I was there in the beginning... and things were very different back then" --An Echo from a time before.

Last edited by orionshock : 06-15-2009 at 07:27 PM.
orionshock is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 06-13-2009, 04:40 PM  
Zveroboi
A Murloc Raider

Forum posts: 5
File comments: 63
Uploads: 0
U have done gr8 thing man, thx a lot for 2.6.

P.S. as i can see those lines are setting texture on frame

local solidTexture = "Interface\\Icons\\Temp"
local function setTexture(name)
if addon.useSpellTexture then
local tex = select(3, GetSpellInfo(name))
texture:SetTexture(tex)
frame:Show()
else
texture:SetTexture(solidTexture)


but where is this texture? can i find file with it? how i can draw my own texture? coz "texture:SetTexture(solidTexture)" looks undone for me - where this way leads?...

Last edited by Zveroboi : 06-13-2009 at 04:54 PM.
Zveroboi is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 06-09-2009, 08:21 PM  
orionshock
A Fallenroot Satyr
 
orionshock's Avatar
Interface Author - Click to view interfaces

Forum posts: 28
File comments: 49
Uploads: 5
Quote:
Originally posted by Zveroboi
1st of all i wanna say "thx a lot" for this simple GCD tracer ;P And for 2nd i wanna ask - how i can 1)replace square with circle? 2)how i can remove spell icon and replace it with solid black(or any other color) background?

P.S. i mean what i need to change in .lua for this things
Well you'll need to partially gut the functions that check and set the textures, and you'll need a round texture also. I'll look into it, see what i come up with.
__________________
Author of GuildCraft, SickOfClickingDailies

"I was there in the beginning... and things were very different back then" --An Echo from a time before.
orionshock is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 06-08-2009, 09:20 AM  
Zveroboi
A Murloc Raider

Forum posts: 5
File comments: 63
Uploads: 0
1st of all i wanna say "thx a lot" for this simple GCD tracer ;P And for 2nd i wanna ask - how i can 1)replace square with circle? 2)how i can remove spell icon and replace it with solid black(or any other color) background?

P.S. i mean what i need to change in .lua for this things

Last edited by Zveroboi : 06-08-2009 at 09:23 AM.
Zveroboi is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 05-28-2009, 07:38 PM  
orionshock
A Fallenroot Satyr
 
orionshock's Avatar
Interface Author - Click to view interfaces

Forum posts: 28
File comments: 49
Uploads: 5
Quote:
Originally posted by Hei-di
Awesome.

But is there a possibility to add functionality, that if no castbar is triggered, the gcd is shown?
would be great, so that if i cast an instant heal, i know when to shot the next one.

but having gcd shown all the time is a pain :/
Im sorry but your questions seem to be like you havn't downloaded the addon. Your request is a basic fundamental of the addon, as i myself wanted that specific aspect. while i don't play every class, it could be that the spell set for your class might not be working correctly. tho if you play a priest, i can guarrentee it works i play a priest full up.

Any spell that triggers the GCD causes the frame to show up, if that spell has a cast or a channel then the frame stays up.
__________________
Author of GuildCraft, SickOfClickingDailies

"I was there in the beginning... and things were very different back then" --An Echo from a time before.

Last edited by orionshock : 05-28-2009 at 07:45 PM.
orionshock is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 05-28-2009, 04:10 AM  
Hei-di
A Defias Bandit

Forum posts: 3
File comments: 31
Uploads: 0
Awesome.

But is there a possibility to add functionality, that if no castbar is triggered, the gcd is shown?
would be great, so that if i cast an instant heal, i know when to shot the next one.

but having gcd shown all the time is a pain :/
Hei-di is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 05-28-2009, 03:48 AM  
Hei-di
A Defias Bandit

Forum posts: 3
File comments: 31
Uploads: 0
great addon, but is there a possibility to change the addon to not watch the GCD, but the casttime? would be awesome for healers whacking their grid
Hei-di is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 05-28-2009, 03:38 AM  
orionshock
A Fallenroot Satyr
 
orionshock's Avatar
Interface Author - Click to view interfaces

Forum posts: 28
File comments: 49
Uploads: 5
Re: Re: Not Working with Instants

Quote:
Originally posted by orionshock
I guess there will be another update after i test it a bit.. [/b]
Did some more testing... unfortunately Hearthstone only works as long as you don't use it, this to me is not a viable option.

However i did find the DK Spell i can use. But I cannot reproduce the problem with the priest. I removed all the tracking spell stuff, only one that works is hunter with tracking spells.
__________________
Author of GuildCraft, SickOfClickingDailies

"I was there in the beginning... and things were very different back then" --An Echo from a time before.
orionshock is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 05-27-2009, 06:32 PM  
orionshock
A Fallenroot Satyr
 
orionshock's Avatar
Interface Author - Click to view interfaces

Forum posts: 28
File comments: 49
Uploads: 5
Re: Not Working with Instants

Quote:
Originally posted by goldensword52
Edit #2: Heres an even better solution: ignore everything else I said and just replace the numbers on lines 66 and 67 with the number: "8690". This uses the spell cast by your hearthstone, which shares a GCD with all other important spells. I also tested this and it works great for me, better than my earlier solution because the hearthstone isn't in a spell school that can be interrupted like other spells. You don't even need to have a hearthstone in your inventory for it to work.
? ZOMG i never thought about that...

I guess there will be another update after i test it a bit..
__________________
Author of GuildCraft, SickOfClickingDailies

"I was there in the beginning... and things were very different back then" --An Echo from a time before.
orionshock is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 05-26-2009, 12:49 PM  
goldensword52
A Kobold Labourer

Forum posts: 0
File comments: 5
Uploads: 0
Not Working with Instants

It doesn't seem to work with instant spells for me (a priest). It works fine for casted and channeled spells, and even find fish, but it doesn't work with any of my instant priest spells.

Edit: after some testing, I found out that the problem is that find fish is not on the same global cooldown as any other important spells. I just deleted the find fish section of the code (lines 66-67 in the lua file) then deleted the "else" on the start of the next line down and it works fine. If you are a miner or a herbalist, you might also want to delete the next 4 lines to get rid of the same problem with find herbs and minerals, but I haven't tested this so I don't know if it would cause problems.

Edit #2: Heres an even better solution: ignore everything else I said and just replace the numbers on lines 66 and 67 with the number: "8690". This uses the spell cast by your hearthstone, which shares a GCD with all other important spells. I also tested this and it works great for me, better than my earlier solution because the hearthstone isn't in a spell school that can be interrupted like other spells. You don't even need to have a hearthstone in your inventory for it to work.

Last edited by goldensword52 : 05-26-2009 at 03:05 PM.
goldensword52 is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 05-26-2009, 11:10 AM  
Fonjask
A Fallenroot Satyr
 
Fonjask's Avatar
Interface Author - Click to view interfaces

Forum posts: 22
File comments: 261
Uploads: 4
Quote:
Originally posted by xtoq
Auracle. Buffs and debuffs monitoring, you have to tell it which ones so it will only monitor the ones you say to.
I'll check it out, thanks.

EDIT: Also, there's something wrong with your .zip I think, here's what I got when I tried to download and open your file:

__________________
Himeros
80 Draenei Holy Paladin
EU-Bronze Dragonflight
> Have a !

Last edited by Fonjask : 05-26-2009 at 11:17 AM.
Fonjask is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 05-26-2009, 10:54 AM  
xtoq
A Fallenroot Satyr
 
xtoq's Avatar
Interface Author - Click to view interfaces

Forum posts: 25
File comments: 624
Uploads: 2
Auracle. Buffs and debuffs monitoring, you have to tell it which ones so it will only monitor the ones you say to.
xtoq 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 - 2010, Jelsoft Enterprises Ltd.