Download
(22Kb)
Download
Updated: 10-09-12 08:37 PM
Pictures
File Info
Updated:10-09-12 08:37 PM
Created:01-03-11 07:12 PM
Downloads:197,699
Favorites:200
MD5:

Icicle  Popular! (More than 5000 hits)

Version: v1.0
by: xthothx [More]

Adds enemy cooldowns to their nameplates!

/icicle or ingame menu for options.

In cases where spells have variable cooldown times I've used the lowest possible that I'm aware of, So please remember that in some cases the cooldown shown is a guideline not concrete.

Icicle uses the combat log so if cooldowns are used out of its range or are otherwise hidden from it they will not show up.

* I no longer play wow and due to time restraints did not test this rewrite as extensively as i should have. Lets cross our fingers there's not too many addon breaking bugs =).

v1.0
--complete rewrite for MoP
--ingame options added

v0.9.2
--update for 4.2 thanks terryremiux for the help

v0.9.1
--fixed my timer fail

v0.9
--patched for 4.1
--updated some cooldowns
--implented timers

v0.8
--Updated cooldowns for 4.0.6
--Fixed timers not showing sometimes /facepalm

v0.7
--Fix for spells that weren't working ie: Hex, Ring of Frost and a few others.
Thanks FrokeR for letting me know
--Added a border on interrupts and silences

v0.6
--Made the tables local...D'oh
--Changed the event that resets cooldowns
--Big update to the spell list

v0.5
--Stopped pointless nameplate scanning
--Small code optimization
--Cooldowns reset when zoning

v0.4
--Added support for Aloft. thanks acapela

v0.3
--Added support for Cold Snap, Preparation and Readiness
--Icons constrained by frame width
--Added Mind Freeze and Rebuke to the spell list...oops

v0.2
--Cleaned up the code
--Fixed icons occasionally showing up small
Optional Files (1)
File Name
Version
Size
Author
Date
Type
5.4
24kB
11-02-13 08:36 PM
Patch


Post A Reply Comment Options
Unread 01-12-11, 05:58 AM  
vard
A Kobold Labourer
AddOn Compiler - Click to view compilations

Forum posts: 0
File comments: 59
Uploads: 1
GREAT addon

Keep this working well with aloft and I'll owe you a million blowjobs.
Report comment to moderator  
Reply With Quote
Unread 01-12-11, 06:23 AM  
Aisenfaire
A Murloc Raider

Forum posts: 6
File comments: 394
Uploads: 0
I love the idea of this addon!

Is there some way to change where the spells appear? Tidyplates has a very useful setting for displaying my current dots and CC on the enemy (also as icons with timers over the nameplates), and it would be rather confusing to see their CDs mixed in with those.

It would be fantastic if we could set enemy CDs to appear below the nameplate, for instance, or perhaps own dots/ CC icons appear up on right and CDs appear on left?
Report comment to moderator  
Reply With Quote
Unread 01-12-11, 11:14 AM  
Agata
A Murloc Raider

Forum posts: 7
File comments: 42
Uploads: 0
Make this work with Docs Nameplates, please!
Report comment to moderator  
Reply With Quote
Unread 01-12-11, 05:37 PM  
xthothx
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 32
Uploads: 2
@Agata i looked at docs nameplates and sadly I'm going to say you are better off asking the addon author for the functionality you are after.

@Vard thanks but make sure you thank acapela too.

@Rammoth I rolled my own UI the main elements are made from pitbull, Bartender, Litestats and Litepanels.

@Aisenfaire at the moment you can change the position by opening Icicle.lua in notepad finding these lines
Code:
if i == 1 then
	db[name][i]:SetPoint("TOPLEFT", f, 0, size + 10)
else
	db[name][i]:SetPoint("TOPLEFT", db[name][i-1], size + 2, 0)
end
and changing them to
Code:
if i == 1 then
	db[name][i]:SetPoint("BOTTOMLEFT", f, 0, - size)
else
	db[name][i]:SetPoint("BOTTOMLEFT", db[name][i-1], size + 2, 0)
end
and if it needs futher adjustment
db[name][i]:SetPoint("BOTTOMLEFT", f, 0, - size (+/-) (numberhere))
Last edited by xthothx : 01-13-11 at 02:58 AM.
Report comment to moderator  
Reply With Quote
Unread 01-13-11, 06:50 AM  
stoneros
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
cool!!

this is so cool~! thx for the good work
Last edited by stoneros : 01-13-11 at 06:50 AM.
Report comment to moderator  
Reply With Quote
Unread 01-13-11, 07:25 AM  
Rammoth
A Cliff Giant
 
Rammoth's Avatar
AddOn Author - Click to view AddOns

Forum posts: 73
File comments: 628
Uploads: 1
Originally posted by xthothx
@Rammoth I rolled my own UI the main elements are made from pitbull, Bartender, Litestats and Litepanels.
Thanks. I was wondering if you would be releasing your UI? Because I'm not so sure I could configure it to look like that. It would be very complicated for me considering I can't comprehend the settings as well as others. (daggon brain problems)
Report comment to moderator  
Reply With Quote
Unread 01-13-11, 09:30 AM  
Agata
A Murloc Raider

Forum posts: 7
File comments: 42
Uploads: 0
Originally posted by xthothx
@Agata i looked at docs nameplates and sadly I'm going to say you are better off asking the addon author for the functionality you are after.
Thank you very much for the fast response!
Sad about the fact, but I wish you good luck and keep up the nice work!
Report comment to moderator  
Reply With Quote
Unread 01-13-11, 10:50 AM  
Aisenfaire
A Murloc Raider

Forum posts: 6
File comments: 394
Uploads: 0
Originally posted by xthothx
@Aisenfaire at the moment you can change the position by opening Icicle.lua in notepad finding these lines
Code:
if i == 1 then
	db[name][i]:SetPoint("TOPLEFT", f, 0, size + 10)
else
	db[name][i]:SetPoint("TOPLEFT", db[name][i-1], size + 2, 0)
end
and changing them to
Code:
if i == 1 then
	db[name][i]:SetPoint("BOTTOMLEFT", f, 0, - size)
else
	db[name][i]:SetPoint("BOTTOMLEFT", db[name][i-1], size + 2, 0)
end
and if it needs futher adjustment
db[name][i]:SetPoint("BOTTOMLEFT", f, 0, - size (+/-) (numberhere)) [/b]
I'll do that, thank you!
Report comment to moderator  
Reply With Quote
Unread 01-14-11, 06:36 PM  
xthothx
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 32
Uploads: 2
@Rammoth sorry no intention of releasing my UI.
Report comment to moderator  
Reply With Quote
Unread 01-17-11, 06:14 AM  
nobbe
A Kobold Labourer

Forum posts: 1
File comments: 7
Uploads: 0
Activation problems?!

I've downloaded the addon and it's checked in my active addons, however I can only see the default nameplates. Is there some kinda setup options or something that I need to do to active it?
Report comment to moderator  
Reply With Quote
Unread 01-17-11, 07:23 AM  
xthothx
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 32
Uploads: 2
nobbe this doesn't change the look of your nameplates just adds cooldowns I think what you are after is this
http://www.wowinterface.com/download...ates.html#info
Last edited by xthothx : 01-17-11 at 07:24 AM.
Report comment to moderator  
Reply With Quote
Unread 01-17-11, 04:43 PM  
nobbe
A Kobold Labourer

Forum posts: 1
File comments: 7
Uploads: 0
Originally posted by xthothx
nobbe this doesn't change the look of your nameplates just adds cooldowns I think what you are after is this
http://www.wowinterface.com/download...ates.html#info
Ah ok! Thanks a lot!
Report comment to moderator  
Reply With Quote
Unread 01-17-11, 09:34 PM  
syruf
A Defias Bandit

Forum posts: 2
File comments: 5
Uploads: 0
latest update makes stuff come up on random nameplates with no timer and never fades from them?

thanks for this kickass addon btw
Report comment to moderator  
Reply With Quote
Unread 01-18-11, 12:34 AM  
xthothx
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 32
Uploads: 2
syruf which nameplate addon are you using? Does it happen every bg or arena or was it a one off? did you do anything unusual before it happened? need the feedback to reproduce the problem.
I did use the wrong event to reset the cds on zoning, was trying something else and forgot to change it back before i released it not sure but that could be the reason.
Last edited by xthothx : 01-18-11 at 12:51 AM.
Report comment to moderator  
Reply With Quote
Unread 01-18-11, 10:59 PM  
Naem
A Kobold Labourer

Forum posts: 0
File comments: 40
Uploads: 0
__________________
k
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: