Download
(261Kb)
Download
Compatible with Retail, Classic & TBC
Updated: 06-16-24 07:08 AM
Pictures
File Info
Compatibility:
Cataclysm Classic (4.4.0)
Classic (1.15.0)
Guardians of the Dream (10.2.0)
Fractures in Time (10.1.5)
WotLK Patch (3.4.2)
TBC Patch (2.5.4)
Updated:06-16-24 07:08 AM
Created:unknown
Downloads:251,785
Favorites:424
MD5:
Categories:Rogue, Druid, Paladin, Shaman, Warlock, Combat Mods

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

Version: 10.2.6
by: d87 [More]

Class resource tracker





Live
Rogue: Combo points, Shadow Dance
Druid: Combo points
Death Knights: Runes
Demon Hunters: Soul Fragments
Warlock: Soul Shards
Paladin: Holy Power
Monk: Chi, Teachings
Shaman: Maelstrom, Icefury, Undulation
Mage: Arcane Charges, Icicles, Fireblast

Classic
Only Combo Points


TBC BETA RELEASES

github

>> Beta releases

My other combat addons:
NugEnergy - Energy/rage bar
NugRunning
Aptechka
NugHealth

NugComboBar
10.2.6 (2024-06-16)
Full Changelog Previous Releases
  • Added Shadow Infusion for Cata
  • Added Pulverize in Cata
Archived Files (17)
File Name
Version
Size
Author
Date
10.2.5
261kB
d87
04-30-24 11:54 AM
10.2.4
259kB
d87
03-13-24 07:00 PM
10.2.3
259kB
d87
02-20-24 10:35 AM
10.2.2
259kB
d87
02-10-24 09:07 PM
10.2.1
259kB
d87
01-16-24 02:03 AM
10.2.0
259kB
d87
11-26-23 08:42 PM
10.1.2
259kB
d87
07-11-23 10:43 PM
10.1.1
258kB
d87
07-11-23 08:51 AM
10.1.0
258kB
d87
05-23-23 10:07 PM
10.0.2
258kB
d87
10-26-22 10:05 PM
10.0.1
258kB
d87
10-25-22 11:17 PM
10.0.0
258kB
d87
10-25-22 01:28 PM
9.2.2
257kB
d87
09-07-22 08:29 PM
9.2.1
257kB
d87
08-30-22 04:42 AM
9.2.0
257kB
d87
02-22-22 06:06 PM
9.1.0
256kB
d87
07-16-21 04:56 PM
9.1.0
256kB
d87
07-16-21 04:56 PM


Post A Reply Comment Options
Unread 07-22-10, 05:27 AM  
Lgd77
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
Originally posted by d87
That's my ouf layout. It's not finished, pet frame is missing for starters, and it's messy and bothersome to maintain. So i'm not going to release it yet.
Cant wait till you do release it!
Report comment to moderator  
Reply With Quote
Unread 08-09-10, 11:31 AM  
AlexBrych
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Hey I like this addon , best combo tracking addon ever . And i whould like to ask if its posible to make this addon tracking stackable poisons likewise original mod ?
Tnx in advance
Report comment to moderator  
Reply With Quote
Unread 10-14-10, 12:36 PM  
pifinsane
A Kobold Labourer

Forum posts: 0
File comments: 6
Uploads: 0
If you have the time could you add a sound when you have the whole bar "like if I have 3HolyPower" or point out where I could try and add a sound

I completly understand if you dont have time/effort as theres alot to do during the patch
Report comment to moderator  
Reply With Quote
Unread 10-14-10, 01:34 PM  
d87
A Chromatic Dragonspawn
 
d87's Avatar
AddOn Author - Click to view AddOns

Forum posts: 163
File comments: 643
Uploads: 42
Originally posted by pifinsane
If you have the time could you add a sound when you have the whole bar "like if I have 3HolyPower" or point out where I could try and add a sound

I completly understand if you dont have time/effort as theres alot to do during the patch
Code:
function NugComboBar.UNIT_COMBO_POINTS(self, event, unit, ptype)
    if unit ~= allowedUnit then return end
    local comboPoints = GetComboPoints(unit);
    
    for i = 1,MAX_POINTS do
        if i <= comboPoints and not self.p[i].active then
            self.p[i]:Activate()
        end
        if i > comboPoints and self.p[i].active then
            self.p[i]:Deactivate()
        end
    end
    
    if comboPoints == 0 and not showEmpty then
        self:SetAlpha(0)
    else
        self:SetAlpha(1)
    end

    if comboPoints == MAX_POINTS then PlaySound(...) end

end
or maybe it's called PlaySoundFile
Report comment to moderator  
Reply With Quote
Unread 10-15-10, 10:28 PM  
Lockon
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Hi I am sorry to bother you guys but I just want to know how to activate the classic combo point (the one with the fiery animation) in the new NCB. I know it says there go to lua file but that is the thing I dont know exactly how to do it. Again I am sorry for bothering you but I hope you can help me. Thank you
Report comment to moderator  
Reply With Quote
Unread 10-15-10, 10:33 PM  
d87
A Chromatic Dragonspawn
 
d87's Avatar
AddOn Author - Click to view AddOns

Forum posts: 163
File comments: 643
Uploads: 42
Originally posted by Lockon
Hi I am sorry to bother you guys but I just want to know how to activate the classic combo point (the one with the fiery animation) in the new NCB. I know it says there go to lua file but that is the thing I dont know exactly how to do it. Again I am sorry for bothering you but I hope you can help me. Thank you
at the top of classic.lua
Code:
local animation = false
set it to true

btw, I'll update main addon and both skins today
Report comment to moderator  
Reply With Quote
Unread 10-16-10, 04:58 AM  
Vaey
A Kobold Labourer

Forum posts: 0
File comments: 39
Uploads: 0
installed new version and striped skin and only get errors and no bar
Report comment to moderator  
Reply With Quote
Unread 10-16-10, 06:42 AM  
d87
A Chromatic Dragonspawn
 
d87's Avatar
AddOn Author - Click to view AddOns

Forum posts: 163
File comments: 643
Uploads: 42
Originally posted by Vaey
installed new version and striped skin and only get errors and no bar
fixed
Report comment to moderator  
Reply With Quote
Unread 10-16-10, 10:13 AM  
Phauss
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
I was looking for a way to turn the combo point frame on permanently, regardless of combat state or amount of combo points, and I found that changing an alpha state in NugComboBar.lua works pretty well. I read in an earlier comment that their solution might be buggy; perhaps this will have less of an impact on the original code:

Code:
if comboPoints == 0 and not showEmpty then
        self:SetAlpha(1)
    else
        self:SetAlpha(1)
    end
The top SetAlpha is originally 0, so I just changed that to 1.

I don't know a whole lot about lua code, so this could be incorrect. It seems like a redundant function when this is done, but it works for me without any issues. I'm no programmer, but I do a lot of web design, so looking at code isn't too foreign to me. XD
Report comment to moderator  
Reply With Quote
Unread 10-16-10, 10:24 AM  
Vaey
A Kobold Labourer

Forum posts: 0
File comments: 39
Uploads: 0
looks like the DL link to the striped version is still not available :x
Report comment to moderator  
Reply With Quote
Unread 10-16-10, 10:25 AM  
d87
A Chromatic Dragonspawn
 
d87's Avatar
AddOn Author - Click to view AddOns

Forum posts: 163
File comments: 643
Uploads: 42
You can also set hidden showEmpty flag for your class (see how it's done with warlocks)
Report comment to moderator  
Reply With Quote
Unread 10-16-10, 10:52 AM  
khanthal
A Kobold Labourer

Forum posts: 0
File comments: 5
Uploads: 0
The file for the stripped version appears to be the classic version (1287229430-NugComboBarClassic_r3.zip) and has the classic folder and lua.

Am I doing something wrong or is the wrong file up there?
Report comment to moderator  
Reply With Quote
Unread 10-16-10, 10:59 AM  
d87
A Chromatic Dragonspawn
 
d87's Avatar
AddOn Author - Click to view AddOns

Forum posts: 163
File comments: 643
Uploads: 42
oh fuck, i'm amazingly clumsy today. poor Vaey
Report comment to moderator  
Reply With Quote
Unread 10-16-10, 11:16 AM  
Vaey
A Kobold Labourer

Forum posts: 0
File comments: 39
Uploads: 0
np can happen to everyone : )
Report comment to moderator  
Reply With Quote
Unread 10-16-10, 01:08 PM  
Vaey
A Kobold Labourer

Forum posts: 0
File comments: 39
Uploads: 0
may I ask you what "uncomment" is meant while editing the lua to get old border back :x?
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: