Download
(259Kb)
Download
Compatible with Retail, Classic & TBC
Updated: 03-13-24 07:00 PM
Pictures
File Info
Compatibility:
Classic (1.15.0)
Guardians of the Dream (10.2.0)
WotLK Patch (3.4.2)
Updated:03-13-24 07:00 PM
Created:unknown
Downloads:251,379
Favorites:426
MD5:
Categories:Rogue, Druid, Paladin, Shaman, Warlock, Combat Mods

NugComboBar  Popular! (More than 5000 hits)

Version: 10.2.4
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.4 (2024-03-14)
Full Changelog Previous Releases
  • Fix for 10.2.5 ColorPicker
Archived Files (22)
File Name
Version
Size
Author
Date
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
9.0.9
253kB
d87
01-25-21 11:00 AM
9.0.9
253kB
d87
01-25-21 11:00 AM
9.0.9
253kB
d87
01-25-21 11:00 AM
9.0.9
253kB
d87
01-25-21 11:00 AM
9.0.9
253kB
d87
01-25-21 11:00 AM
9.0.9
253kB
d87
01-25-21 11:00 AM
9.0.8
253kB
d87
01-01-21 11:09 PM


Post A Reply Comment Options
Unread 10-24-13, 04:05 PM  
meljen
A Fallenroot Satyr

Forum posts: 28
File comments: 309
Uploads: 0
Just wanted to pitch in and say that I've always loved this addon. It's really nice looking and works VERY well for tracking various stacking points. Loved it on my rogue, can't wait to use it on my pally.

Please, please please keep it running, I'd hate to see this one go poof! I'm sure I'm not the only player that would miss it. :-) Thank you!

*edit* Saw that this is updated on Curse, so thank you. :-)
Last edited by meljen : 10-24-13 at 04:29 PM.
Report comment to moderator  
Reply With Quote
Unread 07-18-13, 08:28 PM  
d87
A Chromatic Dragonspawn
 
d87's Avatar
AddOn Author - Click to view AddOns

Forum posts: 163
File comments: 643
Uploads: 42
Error is due to some misspelling on your part.
Here's how it should look.
Code:
elseif class == "MONK" then
            local GetChi = function(unit)
                return UnitPower(unit, SPELL_POWER_CHI)
            end
            self:SetMaxPoints(4)     -- <--- line that you got wrong
            self:RegisterEvent("UNIT_POWER")
            self.UNIT_POWER = function(self,event,unit,ptype)
                if ptype ~= "CHI" or unit ~= "player" then return end
                self.UNIT_COMBO_POINTS(self,event,unit,ptype)
            end
            GetComboPoints = GetChi

            self:RegisterEvent("SPELLS_CHANGED")
            self.SPELLS_CHANGED = function(self, event)
                if IsSpellKnown(115396)  -- Ascension
                    then self:SetMaxPoints(5, "PALADIN")
                    else self:SetMaxPoints(4)
                end
                self:UNIT_COMBO_POINTS(nil,"player")
            end
            self:SPELLS_CHANGED()
Btw it only works for 5 points, unless you're alright with uncapped right side of background.
Last edited by d87 : 07-18-13 at 08:36 PM.
Report comment to moderator  
Reply With Quote
Unread 07-18-13, 05:53 PM  
QandA
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
Originally Posted by d87
NugComboBar.lua
Hey,

I changed the class self:SetMaxPoints(5) of monk to self:SetMaxPoints(5, "PALADIN"). However I keep getting this error when I log on on my Monk.

Message: ..\AddOns\NugComboBar\NugComboBar.lua line 189:
function arguments expected near ':'
Report comment to moderator  
Reply With Quote
Unread 07-16-13, 06:58 PM  
d87
A Chromatic Dragonspawn
 
d87's Avatar
AddOn Author - Click to view AddOns

Forum posts: 163
File comments: 643
Uploads: 42
NugComboBar.lua
Last edited by d87 : 07-16-13 at 06:58 PM.
Report comment to moderator  
Reply With Quote
Unread 07-16-13, 05:55 PM  
QandA
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
Originally Posted by d87
find self:SetMaxPoints(5) statement for your class, make it self:SetMaxPoints(5, "PALADIN")
Newb here.Where can I exactly find this statement?

Thanks for the fast reply.
Report comment to moderator  
Reply With Quote
Unread 07-15-13, 08:55 PM  
d87
A Chromatic Dragonspawn
 
d87's Avatar
AddOn Author - Click to view AddOns

Forum posts: 163
File comments: 643
Uploads: 42
find self:SetMaxPoints(5) statement for your class, make it self:SetMaxPoints(5, "PALADIN")
Report comment to moderator  
Reply With Quote
Unread 07-15-13, 08:42 PM  
QandA
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
Hey, does anyone know how to set the bar (5 point generator) to make the 3rd point be the biggest like the paladin one?

Thanks in advance.
Report comment to moderator  
Reply With Quote
Unread 07-11-13, 10:34 PM  
berqiang
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
oh.how can i miss it~ finnaly the problem solved ,thx so much,yes,the new monitor i'm using is with 21:9 ratio.
Report comment to moderator  
Reply With Quote
Unread 07-11-13, 10:16 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 berqiang
hi there,i've found a bug,and i can't solve it with delete my WTF files of nugcombobar,also i've tried change scale or other settings,none of those works,pls help! thank you .
Adjust X & Y Offset in the settings. This thing happens on resolutions with aspect ratio other than 16:9
Report comment to moderator  
Reply With Quote
Unread 07-11-13, 10:01 PM  
berqiang
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
hi there,i've found a bug,and i can't solve it with delete my WTF files of nugcombobar,also i've tried change scale or other settings,none of those works,pls help! thank you .
Last edited by berqiang : 07-11-13 at 10:08 PM.
Report comment to moderator  
Reply With Quote
Unread 04-18-13, 09:50 AM  
PlueschLing
A Defias Bandit

Forum posts: 2
File comments: 2
Uploads: 0
worked properly, thanks alot!
Report comment to moderator  
Reply With Quote
Unread 04-18-13, 07:42 AM  
d87
A Chromatic Dragonspawn
 
d87's Avatar
AddOn Author - Click to view AddOns

Forum posts: 163
File comments: 643
Uploads: 42
That's for evangelism duration

add this to the bottom of NugComboBar.lua
Code:
NugComboBar.EnableBar = NugComboBar.DisableBar
Report comment to moderator  
Reply With Quote
Unread 04-18-13, 07:20 AM  
PlueschLing
A Defias Bandit

Forum posts: 2
File comments: 2
Uploads: 0
hello there,
im using nugcombobar on my disc priest, and it displays a weird black extra bar inside my mana bar..



all i can find is an option to change the color of said bar. is it possible to just disable it alltogether?

thanks :>
Last edited by PlueschLing : 04-18-13 at 07:26 AM.
Report comment to moderator  
Reply With Quote
Unread 04-17-13, 03:02 PM  
Poessi
A Kobold Labourer

Forum posts: 0
File comments: 20
Uploads: 0
THATS IT! THANKS

Now my SUF give me an error, but i think i don't care
at least i can see my combo points
Report comment to moderator  
Reply With Quote
Unread 04-17-13, 12:59 PM  
d87
A Chromatic Dragonspawn
 
d87's Avatar
AddOn Author - Click to view AddOns

Forum posts: 163
File comments: 643
Uploads: 42
Last edited by d87 : 04-17-13 at 01:11 PM.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: