Download
(203Kb)
Download
Updated: 11-02-14 01:33 AM
Pictures
File Info
Compatibility:
Warlords of Draenor (6.0.3)
Warlords of Draenor Pre-Patch (6.0.2)
Updated:11-02-14 01:33 AM
Created:03-08-11 08:01 AM
Downloads:39,575
Favorites:96
MD5:

oUF Qulight  Popular! (More than 5000 hits)

Version: 2.5
by: Qulight [More]

oUF Qulight

oUF_Qulight Discussion

/config - In-game oUF_Qulight Config.
/ui - ingame command for change all oUF_Qulight positions.
/ui reset - Set default oUF_Qulight positions.

Features:
- Unitframes for: Player, Target, ToT, Pet/Vehicle, Focus, Focus Target, Boss, Raid, Main Tank, Main Tank Target, Boss Frames;
- AltPowerBar support;
- Castbar support for player, target, focus, pet;
- Totembar, Runebar, Holypower, Chi, Combo point, Eclipse Bar and Soul Shards and etc support;
- Buff and debuffs frames for all units;
- Raidframes with aggro highlight, indicators, AuraWatch etc;
- Dispellable debuff highlight for raid frames.
- Raid debuff icons on raid frames.
- AuraWatch to show up to 4 icons representing various player buffs on raid units
- Experience, Reputation bar support;
- ClassTimer support.

Addon support:
- oUF_RaidDebuffs (embedded)
- oUF_DebuffHighligth (embedded)
- oUF_AuraWatch (embedded)
- oUF_Smooth Update (embedded)
- oUF_boring_totembar (embedded)
- oUF_Experience (embedded)
- oUF_Reputation (embedded)
- oUF_CombatFeedback
- oUF_MovableFrames

Credits:
drakull, monolit, haste

http://qulightui.org/forum/index.php?/topic/13-ouf-qulight-changelog/
Optional Files (0)


Post A Reply Comment Options
Unread 09-23-12, 09:14 PM  
Vair
A Kobold Labourer
AddOn Compiler - Click to view compilations

Forum posts: 0
File comments: 7
Uploads: 1
I finally finished changing that addon for my needs. Maybe its help for someone.

Change debuff position: lib, 781
Auras:SetPoint("TOPLEFT", f, 0,30)
To turn off non-player debuffs\buffs on target: add in 780 line "Auras.onlyShowPlayer = true", and in cfg add "cfg.debuffsOnlyShowPlayer = true", "cfg.buffsOnlyShowPlayer = true".
Also, check have u or no that:
-- Desaturate non-Player Debuffs
if(button.debuff) then
if(unit == "target") then
if (unitCaster == "player" or unitCaster == "vehicle") then
button.icon:SetDesaturated(false)
elseif(not UnitPlayerControlled(unit)) then -- If Unit is Player Controlled don"t desaturate debuffs
button:SetBackdropColor(0, 0, 0)
button.overlay:SetVertexColor(0.3, 0.3, 0.3)
button.icon:SetDesaturated(true)
end
end
end
in lib-742, under the cut "local postUpdateIcon = function(element, unit, button, index)"
Last edited by Vair : 09-23-12 at 09:16 PM.
Report comment to moderator  
Reply With Quote
Unread 10-04-12, 01:28 AM  
Raizan
A Kobold Labourer

Forum posts: 0
File comments: 14
Uploads: 0
Anyone have a chi bar on monks?

У меня у монаха не видно ци бара...
Last edited by Raizan : 10-04-12 at 01:43 AM.
Report comment to moderator  
Reply With Quote
Unread 10-08-12, 05:10 AM  
Djokart
A Kobold Labourer
 
Djokart's Avatar

Forum posts: 0
File comments: 51
Uploads: 0
Fix for ChiBar

1) Add this string in cfg.lua
Code:
cfg.showHarmonyBar = true
2)Add this string in core.lua
Code:
if cfg.showHarmonyBar then lib.HarmonyBar(self) end
3)Add this in lib.lua
Code:
lib.HarmonyBar = function(self)
if playerClass ~= "MONK" then return end
				
		bars = CreateFrame("Frame", nil, self)
		bars:SetPoint("BOTTOMLEFT", self, "TOPLEFT", 0,7)
		bars:SetWidth(245)
		bars:SetHeight(6)
		bars:SetFrameLevel(6)
			
			for i = 1, 5 do
				bars[i]=CreateFrame("StatusBar", nil, bars)
		bars[i]:SetHeight(bars:GetHeight())					
		bars[i]:SetStatusBarTexture(cfg.statusbar_texture)
		bars[i]:GetStatusBarTexture():SetHorizTile(false)

		bars[i].bg = bars[i]:CreateTexture(nil, 'BORDER')
		bars[i]:SetStatusBarColor(0, 0, 0, 0)

				if i == 1 then
					bars[i]:SetPoint("LEFT", bars)
				else
					bars[i]:SetPoint("LEFT", bars[i-1], "RIGHT", 1, 0)
				end
				bars[i].bg:SetAllPoints(bars[i])
		bars[i]:SetWidth((bars:GetWidth() - 2)/5)
		bars[i].bg:SetTexture(cfg.statusbar_texture)					
		bars[i].bg:SetAlpha(1)
			end
			
			bars.backdrop = CreateFrame("Frame", nil, bars)
			framefix1px(bars.backdrop)
			CreateShadow(bars.backdrop)
			bars.backdrop:SetBackdropBorderColor(0, 0, 0, 1)
			bars.backdrop:SetPoint("TOPLEFT", -2, 2)
			bars.backdrop:SetPoint("BOTTOMRIGHT", 2, -2)
			bars.backdrop:SetFrameLevel(bars:GetFrameLevel() - 1)
			self.HarmonyBar = bars	
end
4)Replace this file in oUF_Qulight\Plugins
__________________
Evil is Good
Report comment to moderator  
Reply With Quote
Unread 10-13-12, 11:24 AM  
Raizan
A Kobold Labourer

Forum posts: 0
File comments: 14
Uploads: 0
2Djokart:
i'ts for me?
Report comment to moderator  
Reply With Quote
Unread 10-13-12, 02:13 PM  
Djokart
A Kobold Labourer
 
Djokart's Avatar

Forum posts: 0
File comments: 51
Uploads: 0
Its for all, who wants a ChiBar for Monk in this unit frames.
Не только для тебя. Просто прикрутил стилизованный Чибар.
__________________
Evil is Good
Report comment to moderator  
Reply With Quote
Unread 10-16-12, 08:19 AM  
Bloodier
A Fallenroot Satyr

Forum posts: 20
File comments: 54
Uploads: 0
How to hide buffs when in pet battle?
Report comment to moderator  
Reply With Quote
Unread 10-20-12, 03:21 AM  
Lvkke
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 11
Uploads: 1
Alt Power bar

How do i remove the Alt Power Bar when im in some sort of raids`? like a green bar that is green and show % of something
Report comment to moderator  
Reply With Quote
Unread 10-27-12, 11:49 AM  
Vdo
A Kobold Labourer

Forum posts: 0
File comments: 9
Uploads: 0
Hello,
The default WoW breath bar looks like sh*t. I know that OuF Qulight addresses this issue quite nicely. Is there any way to apply this to OuF Mlight?

edit - nvm, acb mirror with litepanels works quite nicely
Last edited by Vdo : 11-03-12 at 01:24 PM.
Report comment to moderator  
Reply With Quote
Unread 10-30-12, 10:48 AM  
iMalcolm
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
i have two problems

1 power bar does not work for paladin

2 tooltips for buffs/debuffs do not work

clean setup without any changes

could you give me advice how i can resolve this issues?
Report comment to moderator  
Reply With Quote
Unread 10-30-12, 03:46 PM  
Djokart
A Kobold Labourer
 
Djokart's Avatar

Forum posts: 0
File comments: 51
Uploads: 0
Download and istall 1.4 version, not 1.4a
1) Read 2nd comment here
2) Read comment of user "Bloodier" few posts ago.
__________________
Evil is Good
Last edited by Djokart : 10-30-12 at 03:47 PM.
Report comment to moderator  
Reply With Quote
Unread 11-08-12, 04:45 AM  
Mayron
A Frostmaul Preserver
 
Mayron's Avatar
AddOn Author - Click to view AddOns

Forum posts: 275
File comments: 1200
Uploads: 12
I had the portrait lua message when I tried version 1.4a so I tried 1.4 on my mage who is level 1 and got this error:

Code:
Message: Interface\AddOns\oUF_Qulight\Elements\AuraWatch.lua:268: oUF_AuraWatch error: no spell with 54646 spell ID exists
Time: 11/08/12 10:42:52
Count: 1
Stack: [C]: in function `error'
Interface\AddOns\oUF_Qulight\Elements\AuraWatch.lua:268: in function <Interface\AddOns\oUF_Qulight\Elements\AuraWatch.lua:257>
Interface\AddOns\oUF_Qulight\Elements\AuraWatch.lua:327: in function `enable'
Interface\AddOns\oUF\ouf.lua:99: in function `EnableElement'
Interface\AddOns\oUF\ouf.lua:269: in function <Interface\AddOns\oUF\ouf.lua:192>
(tail call): ?
Interface\AddOns\oUF\ouf.lua:552: in function `Spawn'
Interface\AddOns\oUF_Qulight\core.lua:354: in function `func'
Interface\AddOns\oUF\factory.lua:20: in function <Interface\AddOns\oUF\factory.lua:16>
(tail call): ?

Locals: (*temporary) = "oUF_AuraWatch error: no spell with 54646 spell ID exists"
Also I wanted to ask how I can turn off the debuffs under the unit frame/frames? I want to use my class timer addon to track them rather than seeing the icons appear below my target frame for example.
Thank you!

_
Last edited by Mayron : 11-08-12 at 05:29 AM.
Report comment to moderator  
Reply With Quote
Unread 11-09-12, 03:04 PM  
Djokart
A Kobold Labourer
 
Djokart's Avatar

Forum posts: 0
File comments: 51
Uploads: 0
Originally Posted by Mayron
I had the portrait lua message when I tried version 1.4a so I tried 1.4 on my mage who is level 1 and got this error:

Code:
Message: Interface\AddOns\oUF_Qulight\Elements\AuraWatch.lua:268: oUF_AuraWatch error: no spell with 54646 spell ID exists
Time: 11/08/12 10:42:52
Count: 1
Stack: [C]: in function `error'
Interface\AddOns\oUF_Qulight\Elements\AuraWatch.lua:268: in function <Interface\AddOns\oUF_Qulight\Elements\AuraWatch.lua:257>
Interface\AddOns\oUF_Qulight\Elements\AuraWatch.lua:327: in function `enable'
Interface\AddOns\oUF\ouf.lua:99: in function `EnableElement'
Interface\AddOns\oUF\ouf.lua:269: in function <Interface\AddOns\oUF\ouf.lua:192>
(tail call): ?
Interface\AddOns\oUF\ouf.lua:552: in function `Spawn'
Interface\AddOns\oUF_Qulight\core.lua:354: in function `func'
Interface\AddOns\oUF\factory.lua:20: in function <Interface\AddOns\oUF\factory.lua:16>
(tail call): ?

Locals: (*temporary) = "oUF_AuraWatch error: no spell with 54646 spell ID exists"
Cfg.lua
cfg.showAuraWatch = false -- buffs timer on raid frames(hots, shields etc)

Also I wanted to ask how I can turn off the debuffs under the unit frame/frames?
Core.lua
Code:
local function CreateTargetStyle(self, unit, isSingle)
	self.mystyle = "target"
	lib.init(self)
	self.scale = cfg.scale
...
....
.....
lib.createAuras(self) <- Delete this
Similarly remove it to other frames.
__________________
Evil is Good
Report comment to moderator  
Reply With Quote
Unread 11-09-12, 08:46 PM  
Ryjer
A Kobold Labourer

Forum posts: 0
File comments: 21
Uploads: 0
I can't seem to make oUF Qulight work, I tried installing 1.4 and 1.4a and your frames simply do not appear. Is there any way to fix this?


Thanks!
Report comment to moderator  
Reply With Quote
Unread 12-08-12, 10:57 AM  
dietmug
A Defias Bandit

Forum posts: 2
File comments: 18
Uploads: 0
how can i resize the font on the power bar? i can resize the names, but just not the font on the mana, hp etc
Report comment to moderator  
Reply With Quote
Unread 12-12-12, 04:26 PM  
Lunasea01
A Kobold Labourer

Forum posts: 0
File comments: 12
Uploads: 0
How do I move the focus cast bar? I found where in lib to move all the others, but almost all the lines of code for f.mystyle == "focus" are missing. I tried to just copy and paste the parameters from another bar into the focus, but it didn't change anything for me.

Thanks!
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: