• World of Warcraft Addons
  • World of Warcraft
  • Average Rating:

  • Your Rating

  • Share
  • Report Abuse

CombustionTracker

 
Project Updated:
Files Updated: Thu, Dec 11 2008
Supports Game Version: 3.0.3
Category: Buffs & Debuffs, Class, and Mage
Tags:

, , and [Edit Tags]

Project Manager: MtTracer
Additional Authors: No additional authors
Current Version: v3.00
License: GNU General Public License version 3 (GPLv3)
Development Site: CurseForge
Avg Daily DL (last 30 days): 2
Downloads Total: 12,329
Favorites: 26
Comments: 42
  • About CombustionTracker
  •  

Combustion Tracker is a simple addon that displays a number under the combustion buff showing how many critical fire spells are left until combustion ends.
A moveable standalone icon showing this number is also available.

  • Downloads (7)
  •  
File Name Release Type Game Version Downloads Date
Addon Curse.com Beta 2.3.3 0 9/29/2008
  File Name Release Type Game Version Downloads Date  
  CombustionTracker v3.00 Release 3.0.3 3,154 12/11/2008
  CombustionTracker v2.42 Release 2.4.3 642 7/25/2008
  CombustionTracker v2.41 Release 2.4.3 60 7/24/2008
  CombustionTracker 1.33 Release 2.0.0 45 3/28/2007
  CombustionTracker 1.32 Release 2.0.0 39 11/18/2006
  • Comments

Add Comment  

Add

You need to login or register to post.

Benefits of Registration

  • Interact with hundreds of thousands of other gamers on an open social network.
  • Post your stories, news, images, videos, and other content to share.
  • Create a network with your fellow gamers or join an existing one.
  • Gain reputation for everything you do.
  • Carradoc said

    Worked fine in 3.1 for the morning that I downloaded, now nothing. It was superb!

    Reply Report Permalink
  • TagofFire said

    Looking forward to the update for 3.0.8 =)

    Reply Report Permalink
  • MtTracer said

    No update needed. Still working even with patch 3.1.
    Did you notice any errors?

    Reply Report Permalink
  • Amrun said

    This could be useful. Most fire mages know that it's annoying when you're about to use a powerful fire spell, but your last one used the third crit because you didn't know how many were left >_<. I just hope it works.

    Reply Report Permalink
  • vairin said

    fix for new patch please

    Reply Report Permalink
  • ExiE said

    Any1 know how to fix this one? I really miss it

    Reply Report Permalink
  • MtTracer said

    Sorry for being away that long. I fixed the bugs you mentioned here (and even more) and uploaded as v1.33.

    Did not test yet if it works with Elkano and Satrina.

    Reply Report Permalink
  • Manadar said

    Fix 1 (Frame not hiding): Line 162: if( CombustionTracker_UpdateTextPosition() ) then change to: if( CombustionTracker_UpdateTextPosition() and CombustionTracker_Settings.showframe ) then

    Fix 2 (ElkBuffBar): Line 220: if ( buffName and COMBUSTIONTRACKER_COMBUSTION==tostring(buffName:GetText()) ) then change to: if ( buffName and string.find(tostring(buffName:GetText()), COMBUSTIONTRACKER_COMBUSTION) ) then

    Line 224: --CombustionTracker_MainFrame_CritNumber:Show(); change to: CombustionTracker_MainFrame_CritNumber:Show();

    Line 278: insert: CombustionTracker_UpdateTextPosition(); after: CombustionTracker_StandaloneFrame_CritNumber:SetText(CombustionTracker_CritsLeft);

    I hope this helps ...

    Reply Report Permalink
  • Shukaku_ said

    As Beesee said, This doesn't seem to work with Elkano's Buff Bar. After the first cast it no longer displays the crit count.

    Reply Report Permalink
  • Beerin said

    Couple of bugs:

    1. 1 Help menu calls for showframe, but the actual command is showicon. This is repeated in the status at the very bottom when you just type /ct
    1. 2 If you do set /ct showicon false to hide the icon then:

    --... else if any buff changed we maybe have to reposition the UI text elseif( event=="PLAYER_AURAS_CHANGED" ) then --...so we update it if( CombustionTracker_UpdateTextPosition() ) then CombustionTracker_MainFrame_CritNumber:Show(); CombustionTracker_StandaloneFrame:Show(); end

    ...this will show the standalone frame no matter what. The last line does not check for setting. I just commented it out.

    Beerin

    Reply Report Permalink
  • Jerker said

    Please fix the broken download link!

    Reply Report Permalink
  • tarrinjw said

    Ditto...I miss my tracker. Please re-upload or contact Curse so they know your file(s) have no mirrors.

    Reply Report Permalink
  • cadetdanny said

    I'm trying to download this, and on the mirror page I get a message

    "There doesn't seem to be any mirrors for this addon."

    Therefore I cannot download it.

    Can you please look into this? I really like this addon -- helps me on my timing for double crits on the last Combustion crit.

    Reply Report Permalink
  • beesee said

    This doesn't seem to work with Elkano's Buff Bar. After the first cast it no longer displays the crit count.

    Reply Report Permalink
  • You'd need to do a strfind on a tooltip on the debuff to get the exact name.

    Check out IsBuffActive -> http://www.curse-gaming.com/en/wow/addons-974-1-isbuffactive.html

    Reply Report Permalink
  • Sent said

    This mod won't track frostbolt crits right?

    Reply Report Permalink
  • MtTracer said

    The exact name of the buffs is now extracted from the tooltip. So there should be no problems with Fire Resistence Aura in version 1.1 anymore.

    @Sent: It only counts down the three firecrits for combustion.

    Reply Report Permalink
  • Sent said

    I tried this mod with Satrina's Buff Frames and no go :(

    Reply Report Permalink
  • MtTracer said

    It only works for standard buff icons. I can't make it compatible to every buff bar mod out there. But if there are more requests for a specific mod I maybe will take a look at it.

    Reply Report Permalink
  • Feu said

    -- french localization if ( GetLocale() == "frFR") then COMBUSTIONTRACKER_AURAGAIN = "Vous gagnez Combustion."; COMBUSTIONTRACKER_AURALOSE = "Combustion vient de se dissiper.";

    COMBUSTIONTRACKER_CRITHIT = "Votre (.+) inflige un coup critique à (.+) %((.+) points de dégâts de Feu%)"; COMBUSTIONTRACKER_FIRESPELLS = {"Boule de feu", "Trait de feu", "Brûlure", "Explosion pyrotechnique", "Vague explosive", "Choc de flammes"};

    COMBUSTIONTRACKER_MAGE = "Mage";

    COMBUSTIONTRACKER_LOADED = "chargé." COMBUSTIONTRACKER_DISABLED = "Ce personnage n'est pas un mage. CombustionTracker a été désactivé pour cette session."; end

    Reply Report Permalink
  • Addon Packs Containing CombustionTracker

Most Downloads / Day

CombustionTracker has not been added to any Addon Packs yet.

  • Similar Addons
  •  

Average downloads per day

  1. 11,397 HealBot Continued Unit Frames, Buffs & Debuffs...
  2. 2,324 ForteXorcist Buffs & Debuffs, Buffs & Debuffs...
  3. 2,324 ForteXorcist Buffs & Debuffs, Buffs & Debuffs...
  4. 1,549 DrDamage Combat, Caster, Class, Damage...
  5. 1,547 PallyPower Buffs & Debuffs, and Paladin