Download
(4Kb)
Download
Updated: 09-11-12 12:14 PM
Pictures
File Info
Updated:09-11-12 12:14 PM
Created:03-06-11 03:42 PM
Downloads:8,544
Favorites:52
MD5:

nibRunes  Popular! (More than 5000 hits)

Version: 1.7
by: Nibelheim [More]

1.7


What is it:

nibRunes is a lightweight (20kb) and simple DK Rune display, which comes with an in-built Combat Fader.

All options can be adjusted at the top of Config.lua
After changing settings, type: /reload ui

Note: By default, the Rune display will be completely hidden when you are out of combat, have no enemy target, and all your runes are full. When changing settings, simply target a Training Dummy to bring up the Rune display.



Features:
  • Lightweight
  • A fair amount of options
  • Combat Fader
  • Cooldown display highlights your GCD



Options:
  • Position
    • X and Y offset
    • Anchor point
  • Horizontal or Vertical
  • Frame Level / Strata
  • Appearance
    • Opacity
    • Border width
  • Rune Bars
    • Size
      • Height
      • Width
      • Padding
    • Colors
  • Combat Fader
    • Enable / Disable
    • Opacity settings
      • In Combat
      • Enemy target selected
      • Runes on cooldown
      • Out of Combat



Other nib Addons:

1.7
  • MoP update

1.6
  • Added options for "Hide Blizzard Runes" and "Rune Order"
  • Make sure to update Config.lua

1.5
  • Added a Parent option under Position options.

1.4
  • TOC bump.

1.3
  • New option for making the Runes display and stack horizontally.

1.2
  • New option for making the Rune display Horizontal.

1.1
  • Runes no longer keep growing upon death.
Post A Reply Comment Options
Unread 10-13-22, 09:50 PM  
MMOGames
A Murloc Raider
 
MMOGames's Avatar

Forum posts: 8
File comments: 119
Uploads: 0
Hello There !

Fixed version with colors Classic LK:

https://pastebin.com/JXQVeWw4
Report comment to moderator  
Reply With Quote
Unread 07-23-16, 12:25 PM  
MMOGames
A Murloc Raider
 
MMOGames's Avatar

Forum posts: 8
File comments: 119
Uploads: 0
Originally Posted by Betrayed
Betrayed,

Thank you very much! Any chance to make the runes colors matches the current spec?
Last edited by MMOGames : 07-23-16 at 12:26 PM.
Report comment to moderator  
Reply With Quote
Unread 07-21-16, 12:29 PM  
Nnogga
A Kobold Labourer

Forum posts: 0
File comments: 7
Uploads: 0
http://pastebin.com/EQHCVXQC
I took the liberty of implementing rune sorting (full runes to the left, empty runes to the right) as shown here: https://gyazo.com/979848a1b5e4927c1426e044b4dff293
Report comment to moderator  
Reply With Quote
Unread 07-21-16, 08:50 AM  
Betrayed
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
Report comment to moderator  
Reply With Quote
Unread 07-20-16, 12:14 PM  
MMOGames
A Murloc Raider
 
MMOGames's Avatar

Forum posts: 8
File comments: 119
Uploads: 0
Hello Guys! Any chance someone updated for Legion? Thanks!
Report comment to moderator  
Reply With Quote
Unread 03-20-15, 09:34 AM  
Styla1204
A Kobold Labourer

Forum posts: 0
File comments: 9
Uploads: 0
Originally Posted by boombeef
Originally Posted by MMOGames
Hello Nibelheim! Can you updated for WoD please?
Second this request. It is super simple and sorely missed in my addons.
Still works flawless. If it stops you can steal the Code from RealUI.
Report comment to moderator  
Reply With Quote
Unread 01-03-15, 08:52 PM  
boombeef
A Kobold Labourer

Forum posts: 1
File comments: 40
Uploads: 0
Originally Posted by MMOGames
Hello Nibelheim! Can you updated for WoD please?
Second this request. It is super simple and sorely missed in my addons.
Report comment to moderator  
Reply With Quote
Unread 11-04-14, 01:50 PM  
MMOGames
A Murloc Raider
 
MMOGames's Avatar

Forum posts: 8
File comments: 119
Uploads: 0
Hello Nibelheim! Can you updated for WoD please?
Report comment to moderator  
Reply With Quote
Unread 03-07-13, 06:14 PM  
Machina
A Kobold Labourer

Forum posts: 0
File comments: 14
Uploads: 0
Is there a way to tweak the layout to look like the layout from ddr? I try messing with it a bit but I'm a little lost. Just curious.
Report comment to moderator  
Reply With Quote
Unread 09-16-12, 01:43 PM  
nickstaroba
A Defias Bandit

Forum posts: 2
File comments: 9
Uploads: 0
Great! Thanks for the update
Report comment to moderator  
Reply With Quote
Unread 09-04-12, 10:52 AM  
Ezeky
A Kobold Labourer

Forum posts: 1
File comments: 4
Uploads: 0
ya prob better cause my runes don't update anymore when they become death XD the color stays the original

gone try your fix XD
Report comment to moderator  
Reply With Quote
Unread 09-02-12, 07:39 PM  
Adrese
A Kobold Labourer

Forum posts: 0
File comments: 7
Uploads: 0
GetCompanionCooldown was removed. I replaced it with GetSpellCooldown and it's working fine. But I also don't really know what that bit of the code does. I think it was just a way for the addon to get the speed of the global cooldown when it changes between 1 and 1.5. Though since all DK's now have a 1 second cd it may not be necessary anymore.
Report comment to moderator  
Reply With Quote
Unread 09-02-12, 10:51 AM  
Ezeky
A Kobold Labourer

Forum posts: 1
File comments: 4
Uploads: 0
Something seems weird with this code

Code:
local function Rune_UpdateCooldown()
	-- Update Global Cooldown
	local gcdStart, gcdDuration, gcdIsEnabled = GetCompanionCooldown("CRITTER", 1)
	gcdEnd = gcdIsEnabled and gcdDuration > 0 and gcdStart + gcdDuration or gcdEnd
end

local function Rune_PlayerEnteringWorld()
	-- Update rune colors
	nRD.UpdateRuneTextures()

	-- Update GCD info
	Rune_UpdateForm()
	Rune_UpdateCooldown()
end

local function RuneEvents(self, event, ...)
	if event == "PLAYER_ENTERING_WORLD" then
		Rune_PlayerEnteringWorld()
	elseif event == "ACTIONBAR_UPDATE_COOLDOWN" then
		Rune_UpdateCooldown()
	elseif event == "UPDATE_SHAPESHIFT_FORM" then
		Rune_UpdateForm()
	elseif event == "RUNE_TYPE_UPDATE" then
		Rune_TypeUpdate(event, ...)
	end
end
If you delete that part its not giving errors anymore.

I tested and it seems still to regen correctly, dunno what this part of the code was maybe a check or something anyway.

See ya Ezeky
Report comment to moderator  
Reply With Quote
Unread 09-02-12, 10:39 AM  
Ezeky
A Kobold Labourer

Forum posts: 1
File comments: 4
Uploads: 0
Nah I don't like Vex runes they have a weird way to show the regen of the runes. Nibelheim would be really nice if you could update this addon that would be nice. =D

getting same errors as Tonyleila
Last edited by Ezeky : 09-02-12 at 10:39 AM.
Report comment to moderator  
Reply With Quote
Unread 08-31-12, 06:06 AM  
Abject
A Kobold Labourer
AddOn Compiler - Click to view compilations

Forum posts: 0
File comments: 36
Uploads: 3
I'd recommend to use Vex runes instead, you can make it look exactly like NibRunes by using only the ingame configuration, i found it really appealing to my needs!
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: