Download
(353Kb)
Download
Compatible with Retail, Classic & TBC
Updated: 02-05-24 04:04 AM
Pictures
File Info
Compatibility:
Classic (1.15.0)
Guardians of the Dream (10.2.0)
WotLK Patch (3.4.2)
Updated:02-05-24 04:04 AM
Created:unknown
Downloads:145,409
Favorites:298
MD5:
Categories:Buff, Debuff, Spell, Priest, Warlock, Combat Mods

NugRunning  Popular! (More than 5000 hits)

Version: 10.2.6
by: d87 [More]

Rotational timer addon for all classes.



- Multi-target
- Timers are customizable for each spell
- Optional nameplate timers
- Totem Timers in Classic
- Supports groups, priorities and is able to normalize selected timers duration and hence bring them to a common speed
- Support for dot/gcd ticks, Pandemic and similar WoD dot mechanic

/nrun - list of slash commands

NugRunning on github

>> Beta releases



User config module still works.
NugRunningUserConfig wiki page

NugRunning
10.2.6 (2024-02-05)
Full Changelog Previous Releases
  • ColorPicker bug fixed
Archived Files (26)
File Name
Version
Size
Author
Date
10.2.5
352kB
d87
01-10-24 11:31 AM
10.2.4
352kB
d87
01-08-24 08:14 PM
10.2.3
352kB
d87
11-26-23 08:38 PM
10.2.1
351kB
d87
11-21-23 08:01 AM
10.2.0
351kB
d87
11-15-23 11:30 PM
10.1.5
350kB
d87
09-12-23 02:34 AM
10.1.5
350kB
d87
09-12-23 02:34 AM
10.1.4
350kB
d87
08-27-23 04:30 AM
10.1.4
350kB
d87
08-27-23 04:30 AM
10.1.3
353kB
d87
08-25-23 10:51 PM
10.1.3
353kB
d87
08-25-23 10:51 PM
10.1.3
353kB
d87
08-25-23 10:51 PM
10.1.2
351kB
d87
08-25-23 02:54 AM
9.2.4
350kB
d87
08-25-23 02:51 AM
10.1.1
351kB
d87
08-25-23 02:50 AM
10.1.0
350kB
d87
07-11-23 10:39 PM
10.0.2
350kB
d87
01-10-23 02:04 AM
10.0.1
350kB
d87
10-25-22 01:26 PM
10.0.0
350kB
d87
10-25-22 12:35 PM
9.2.3
350kB
d87
09-05-22 10:17 PM
9.2.2
350kB
d87
08-30-22 11:11 AM
9.2.1
336kB
d87
03-05-22 01:15 AM
9.2.0
336kB
d87
02-22-22 06:12 PM
9.1.0
336kB
d87
06-29-21 03:45 PM
9.1.0
336kB
d87
06-29-21 03:45 PM
9.1.0
336kB
d87
06-29-21 03:43 PM


Post A Reply Comment Options
Unread 08-28-08, 06:16 PM  
pawneddaily
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
Problem with this addon

When running nugrunning, i have found that the timer bars only display once i have applied the dot to the target a second time. i.e. my first immolate cast does not display the bar, but if i reapply it, the bars appear and work great.
Report comment to moderator  
Reply With Quote
Unread 08-29-08, 11:33 PM  
d87
A Chromatic Dragonspawn
 
d87's Avatar
AddOn Author - Click to view AddOns

Forum posts: 163
File comments: 643
Uploads: 42
Re: Problem with this addon

Originally posted by pawneddaily
When running nugrunning, i have found that the timer bars only display once i have applied the dot to the target a second time. i.e. my first immolate cast does not display the bar, but if i reapply it, the bars appear and work great.
yea, that's some recent changes in beta.
updated to 3.0.2
Report comment to moderator  
Reply With Quote
Unread 09-01-08, 08:31 AM  
Exuro
A Kobold Labourer

Forum posts: 0
File comments: 13
Uploads: 0
You should add
Code:
            self.text:SetFontObject("GameFontNormal")
before line 327, else numerical timer isn't shown and it spamms errors
Report comment to moderator  
Reply With Quote
Unread 09-11-08, 01:33 PM  
shadrage
A Kobold Labourer

Forum posts: 0
File comments: 8
Uploads: 0
Now that DoTimer seems finally dead as an addon (R.I.P QQ), you should totally continue this mod of yours for WotLK when its released or continue DoTimer for Asheyla imo!

Nice mod, thanks!
Report comment to moderator  
Reply With Quote
Unread 09-14-08, 02:15 PM  
Tyrrael
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 4
File comments: 53
Uploads: 3
Broken as of Sunday 9/14 1pm on Test Realm.

Needs these two fixes:

timer.stacks = amount or 0 -- line 176
timer.stacktext:SetFontObject("GameFontNormal"); -- add this line
timer.stacktext:SetText(timer.stacks) -- line 177

self.bar:SetValue(self.endTime - (GetTime() - self.startTime)) -- line 346
self.text:SetFontObject("GameFontNormal"); -- add this line
self.text:SetFormattedText("%.1f",self.endTime - GetTime()) -- line 347

And then it works great





[Edit]: Question:

Is there any way to make it sort so dots with least time remaining go to the bottom?
Last edited by Tyrrael : 09-14-08 at 02:46 PM.
Report comment to moderator  
Reply With Quote
Unread 09-14-08, 11:39 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 Tyrrael
Is there any way to make it sort so dots with least time remaining go to the bottom?
it's there in b6. buffs under debuffs and long under short by default
you can change it only in code for now, though it's easy

table.sort(active.buffs,function(a,b) return (a.endTime > b.endTime) end)
table.sort(active.debuffs,function(a,b) return (a.endTime > b.endTime) end)
change > to < here

for i,timer in ipairs(active.buffs) do
timer:SetPoint("BOTTOMLEFT",prev or self.anchor,( prev and "TOPLEFT" ) or "TOPRIGHT", 0,2)
prev = timer
end
for i,timer in ipairs(active.debuffs) do
timer:SetPoint("BOTTOMLEFT",prev or self.anchor,( prev and "TOPLEFT" ) or "TOPRIGHT", 0,2)
prev = timer
end

swap buffs with debuffs here


stuff with font fixed too... it was hardcoded font path to my clearfont addon dir lol
Last edited by d87 : 09-14-08 at 11:44 PM.
Report comment to moderator  
Reply With Quote
Unread 09-15-08, 12:11 AM  
d87
A Chromatic Dragonspawn
 
d87's Avatar
AddOn Author - Click to view AddOns

Forum posts: 163
File comments: 643
Uploads: 42
It's already looks usable for pve
Though for pvp predefined timers length is wrong, everyone got a bunch of talents like 50% stun duration in LK

mb i'll do something with this, but only when 302 goes live. impossible to test anything pvp related on beta/ptr
Report comment to moderator  
Reply With Quote
Unread 09-15-08, 08:35 AM  
hackerz81
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
cant seem to unlock or move via your commands...any ideas?
Report comment to moderator  
Reply With Quote
Unread 09-15-08, 09:51 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 hackerz81
cant seem to unlock or move via your commands...any ideas?
mb you haven't noticed the anchor... it's small
anyway, to reset anchor to center of the screen:
/script NugRunning.anchor:SetPoint("CENTER","UIParent","CENTER",0,0)
Report comment to moderator  
Reply With Quote
Unread 09-15-08, 03:21 PM  
Darkspell
A Deviate Faerie Dragon

Forum posts: 17
File comments: 47
Uploads: 0
Error

I keep getting the following:

[2008/09/15 14:21:58-484-x1]: NugRunning\trackings.lua:455: bad argument #1 to 'pairs' (table expected, got nil)
NugRunning\trackings.lua:455: in function `GenTracks'
NugRunning\NugRunning.lua:25: in function `?'
NugRunning\NugRunning.lua:4: in function <Interface\AddOns\NugRunning\NugRunning.lua:3>
Report comment to moderator  
Reply With Quote
Unread 09-15-08, 08:05 PM  
d87
A Chromatic Dragonspawn
 
d87's Avatar
AddOn Author - Click to view AddOns

Forum posts: 163
File comments: 643
Uploads: 42
Re: Error

Originally posted by Darkspell
I keep getting the following:

[2008/09/15 14:21:58-484-x1]: NugRunning\trackings.lua:455: bad argument #1 to 'pairs' (table expected, got nil)
NugRunning\trackings.lua:455: in function `GenTracks'
NugRunning\NugRunning.lua:25: in function `?'
NugRunning\NugRunning.lua:4: in function <Interface\AddOns\NugRunning\NugRunning.lua:3>
class? not working for dks and hunters yet
Report comment to moderator  
Reply With Quote
Unread 09-17-08, 07:38 AM  
Qanik
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
You are missing
- Sprint
- Envenom (new Selfbuff after performing Envenom)
- Riposte
- Garotte (silence and damage)
- Hemorrhage
- Vanish (improved stealth after performing Vanish)
- Adrenaline Rush
- Blade Flurry
- Cold Blood
- Ghostly Strike
- Improved Kick (talented silence after performing a Kick)
- Rupture
- Killing Spree (guessing here)
- Overkill (guessing here)
- Premeditation
- Shadow Dance (guessing here)
- Waylay (guessing here)
for Rogues atm.

Everything according to latest revision code. Nothing tested on beta.
Last edited by Qanik : 09-17-08 at 09:48 AM.
Report comment to moderator  
Reply With Quote
Unread 09-17-08, 07:06 PM  
Warigar
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
I cannot for the life of me get this mod to show up. I can do the / commands but I have no frame or anything. I'm using many other mods:

Bagnon
BnusScannerContinued...
Buttonfacade
Buttonfacade:Trinity
DemonDaemon
eCastingBar
Macaroon
Macaroon Xtras
NiceBuffTimer
NugRunning
Perl Classic
SCT
Soll-o-matic
TipTop
Titan Panel
UberQuest
UrbanAchiever

Any ideas?

Class: Warlock
Report comment to moderator  
Reply With Quote
Unread 09-18-08, 04:11 AM  
d87
A Chromatic Dragonspawn
 
d87's Avatar
AddOn Author - Click to view AddOns

Forum posts: 163
File comments: 643
Uploads: 42
again, try to reset to center:
/script NugRunning.anchor:SetPoint("CENTER","UIParent","CENTER",0,0)
Report comment to moderator  
Reply With Quote
Unread 09-18-08, 07:15 PM  
Warigar
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
Originally posted by d87
again, try to reset to center:
/script NugRunning.anchor:SetPoint("CENTER","UIParent","CENTER",0,0)
Does not work, copied and pasted verbatim and I still saw nothing
Last edited by Warigar : 09-18-08 at 08:58 PM.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: