InternalCooldowns

Display on the paper doll frame

InternalCooldowns tracks procs from your trinkets (and potentially other equipped items), and can display cooldown swirlies/text/whatever for them.

It may be useful for lining up cooldowns with trinket procs.

You must login to post a comment. Don't have an account? Register to get one!

  • 10 comments
  • Avatar of Mushgog Mushgog Wed, 27 Jan 2010 22:56:08

    is there a way to make the cooldown show for "/use trinketslot" macros? as it is, i have to manually drag the trinket onto my bar

  • Avatar of beefyfife beefyfife Sun, 20 Dec 2009 17:35:57

    So I'm using your addon in conjunction with ForteXorcist and I am noticing a buff that is not being displayed and/or counted, Black Magic, weapon enchant. Was it added to the library?

  • Avatar of lyntz lyntz Thu, 17 Dec 2009 14:03:08

    I tryed to add Deathbringer's Will by myself, i added

    [71519] = {71485, 71491, 71486}, Deathbringer's Will,

    But this does not work, does anyone have an idea how to add this Trinket?

  • Avatar of kogasu kogasu Wed, 16 Dec 2009 08:54:08

    I went through my addons folder with "search" and replaced all my copies of Callback Handler, Libsink 2.0, and LibStub to the most recent version of each that I could find. This did allow my internal CD's to finally show up on Coolline. (I've looked at Sexy Cooldown, and it is indeed sexy, but cpu profiling seems to show it using 5 times as many cpu cycles as Coolline, making me hesitant to switch to it.)

  • Avatar of lyntz lyntz Sat, 12 Dec 2009 22:25:36

    hey there! I got the new Melee Trinket in ICC 25-man named "Deathbringer's Will" ... but sadly InternalCooldowns dont show me the CD from it Is it possible to Add this Trinket by myself or did i have to wait until you update this addon? Dont understand me wrong ... this addon is great but its very annoying that this trinket doesnt show up as cooldown

  • Avatar of blankstare2 blankstare2 Wed, 09 Dec 2009 02:03:02

    i know taints can be caused by other addons and make it look like the current addon, but could you check: 12/8 19:48:23.796 An action was blocked in combat because of taint from InternalCooldowns - MultiCastActionButton10:Show() 12/8 19:48:23.796 Interface\FrameXML\ActionButton.lua:193 12/8 19:48:23.796 ActionButton_Update() 12/8 19:48:23.796 Interface\FrameXML\ActionButton.lua:366 ActionButton_OnEvent() 12/8 19:48:23.796 Interface\FrameXML\MultiCastActionBarFrame.lua:446 MultiCastActionButton_OnEvent() 12/8 19:48:23.796 MultiCastActionButton10:OnEvent()

  • Avatar of kogasu kogasu Sat, 28 Nov 2009 16:03:21

    I use CoolLine (WoWInt) and it will not track hidden (trinket) cooldowns. Supposedly the author has added support for something like this mod. *CoolLine code:

    local function NewCooldown(name, icon, endtime, isplayer)
        local f
        for index, frame in pairs(cooldowns) do
            if frame.name == name and frame.isplayer == isplayer then
                f = frame
                break
            elseif frame.endtime == endtime then
                return
            end
        end
        if not f then
            f = f or tremove(frames)
            if not f then
                f = CreateFrame("Frame", nil, CoolLine.border
                f:SetBackdrop(iconback)
                f.icon = f:CreateTexture(nil, "ARTWORK")
                f.icon:SetTexCoord(0.07, 0.93, 0.07, 0.93)
                f.icon:SetPoint("TOPLEFT", 1, -1)
                f.icon:SetPoint("BOTTOMRIGHT", -1, 1)
            end
            tinsert(cooldowns, f)
        end
        local ctime = GetTime()
        f:SetWidth(iconsize)
        f:SetHeight(iconsize)
        f:SetAlpha((endtime - ctime > 360) and 0.6 or 1)
        f.name, f.endtime, f.isplayer = name, endtime, isplayer
        f.icon:SetTexture(icon)
        local c = db[isplayer and "spellcolor" or "nospellcolor"]
        f:SetBackdropColor(c.r, c.g, c.b, c.a)
        f:Show()
        self:SetScript("OnUpdate", OnUpdate)
        self:SetAlpha(db.activealpha
        OnUpdate(self, 2, ctime)
    end
    CoolLine.NewCooldown CoolLine.ClearCooldown = NewCooldown, ClearCooldown
    __________________

    Can you please make this mod functional with CoolLine?  Thank you in advance for your effort.

    Last edited on 28 Nov 2009 by kogasu
  • Avatar of OnTheHissay OnTheHissay Wed, 28 Oct 2009 19:21:06

    Not currently working with trinkets like Death's Verdict/Choice. Would be nice if it was updated to include those.

  • Avatar of jety14 jety14 Wed, 15 Jul 2009 02:14:40

    Is it possible to get this working with the mage 2 piece T8 bonus. Perhaps, showing a cooldown on all the tier pieces that can proc it. The name of the buff is called Praxis. Other than that, it works fine with all my other procs (Lightweave, Sundial so far).

  • Avatar of Sabaren Sabaren Tue, 16 Jun 2009 10:01:09

    Using this with only MSBT and CoolLine (both of which are suppose to have support for?), this addon shows the spiral on the character pane, but is not displaying anything in the other cooldown addons. I get no sort of lua errors.

    Cooldowns tested: Egg of Mortal Essence, Lightweave, Eclipse(talent)

  • 10 comments

Facts

Date created
09 May 2009
Category
Last update
13 Jan 2010
Development stage
Release
License
All Rights Reserved
Curse link
InternalCooldowns
Recent files

Authors

Relationships

Embedded library
Ace3
LibInternalCooldowns-1.0
LibSink-2.0