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,580
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 05-27-11, 11:39 AM  
Raizan
A Kobold Labourer

Forum posts: 0
File comments: 14
Uploads: 0
Подскажите, пожалуйста, как мне сделать так, чтобы были видны дебафы рейда (хотябы 2 иконки), не такие здоровые, чтоб перекрывали все и чтоб там видно было только то, что я могу сдиспелить? У меня там отображается и увечье тоже к пимеру, хотя его вообще снять нельзя...

По английски я хреново шарю, поэтому написать не смогу
Report comment to moderator  
Reply With Quote
Unread 05-27-11, 09:58 AM  
mikenavi
A Kobold Labourer

Forum posts: 0
File comments: 40
Uploads: 0
Originally posted by Euphor1c
Great looking UFs. I use SBF to track buffs/debuffs on my Pitbull frames right now, I installed these to check them out. I still would rather use my SBF.

How can I disable all buffs/debuffs from player/target/focus frames? I set cfg.showPlayerAuras to false, but that only turns off main buff/debuff frame...not the ones on the unitframes themselves.

Thanks.
you can switch off all auras in core.lua by deleteing all strings:

Code:
	lib.createAuras(self)
and

Code:
	lib.createBuffs(self)
Report comment to moderator  
Reply With Quote
Unread 05-27-11, 09:14 AM  
Forage
A Murloc Raider

Forum posts: 6
File comments: 26
Uploads: 0
Originally posted by mikenavi
add to lib.lua
Code:
lib.SpellRange = function(self)
	if IsAddOnLoaded("oUF_SpellRange") then	
		self.SpellRange = {
		insideAlpha = 1,
		outsideAlpha = 0.6}	
	end
end
and core.lua
Code:
	lib.SpellRange(self)
to frames you want to check range
Thank you very much exactly what I was looking for!
Report comment to moderator  
Reply With Quote
Unread 05-27-11, 08:56 AM  
Fugaru
A Murloc Raider

Forum posts: 6
File comments: 3
Uploads: 0
I have an issue with the Heal Frames.

I don't want to use smooth color on my raid frames so I changed this under local function CreateRaidStyle(self):
Code:
self.Health.colorSmooth = false
After someone dies, the statusbarcolor keeps the ghost color wich is by default white. If I put the colorSmooth on true, it get's back to it's original colour as it should. I just want the healthbar to be darkgrey all the time and update properly again after someone dies. Any idea how I can fix this?
Report comment to moderator  
Reply With Quote
Unread 05-27-11, 08:33 AM  
Euphor1c
A Kobold Labourer

Forum posts: 0
File comments: 13
Uploads: 0
Great looking UFs. I use SBF to track buffs/debuffs on my Pitbull frames right now, I installed these to check them out. I still would rather use my SBF.

How can I disable all buffs/debuffs from player/target/focus frames? I set cfg.showPlayerAuras to false, but that only turns off main buff/debuff frame...not the ones on the unitframes themselves.

Thanks.
Report comment to moderator  
Reply With Quote
Unread 05-26-11, 10:00 AM  
mikenavi
A Kobold Labourer

Forum posts: 0
File comments: 40
Uploads: 0
Originally posted by Forage
I've been trying to add oUF SpellRange, I've added the function.


-- oUF_SpellRange
local function SpellRange(self)

if IsAddOnLoaded("oUF_SpellRange") then
self.SpellRange = {insideAlpha = 1, outsideAlpha = 0.60}
end
end


But when I go to add it to the Target or Focus frames they error out I'm not sure what the errors were but I'll get bugsack and find out for you. In the meantime can you tell me if you know of an exact location under each frame where I can put the code w/o killing the frame?

The code sniplet to be added to the target/focus is

SpellRange(self)

I've used this on a number of other ouf styles but can't for the life of me get it working on yours
add to lib.lua
Code:
lib.SpellRange = function(self)
	if IsAddOnLoaded("oUF_SpellRange") then	
		self.SpellRange = {
		insideAlpha = 1,
		outsideAlpha = 0.6}	
	end
end
and core.lua
Code:
	lib.SpellRange(self)
to frames you want to check range
Report comment to moderator  
Reply With Quote
Unread 05-26-11, 09:22 AM  
Forage
A Murloc Raider

Forum posts: 6
File comments: 26
Uploads: 0
I've been trying to add oUF SpellRange, I've added the function.


-- oUF_SpellRange
local function SpellRange(self)

if IsAddOnLoaded("oUF_SpellRange") then
self.SpellRange = {insideAlpha = 1, outsideAlpha = 0.60}
end
end


But when I go to add it to the Target or Focus frames they error out I'm not sure what the errors were but I'll get bugsack and find out for you. In the meantime can you tell me if you know of an exact location under each frame where I can put the code w/o killing the frame?

The code sniplet to be added to the target/focus is

SpellRange(self)

I've used this on a number of other ouf styles but can't for the life of me get it working on yours
Report comment to moderator  
Reply With Quote
Unread 05-26-11, 07:06 AM  
mikenavi
A Kobold Labourer

Forum posts: 0
File comments: 40
Uploads: 0
Re: Re: Re: Re: Re: How to change castbar's fontsize?

Originally posted by xjjxfpyyyf
Oh, I didn't find that.

Could you please tell me what words I should search for?
Code:
fs:SetFont(cfg.font, 11, fontStyle)
Report comment to moderator  
Reply With Quote
Unread 05-26-11, 05:11 AM  
xjjxfpyyyf
A Kobold Labourer

Forum posts: 0
File comments: 15
Uploads: 0
Re: Re: Re: Re: How to change castbar's fontsize?

Originally posted by mikenavi
201 string
Oh, I didn't find that.

Could you please tell me what words I should search for?
Last edited by xjjxfpyyyf : 05-26-11 at 05:13 AM.
Report comment to moderator  
Reply With Quote
Unread 05-26-11, 03:27 AM  
mikenavi
A Kobold Labourer

Forum posts: 0
File comments: 40
Uploads: 0
Originally posted by Lorenzo
well I tried to disable combo point bar(add some "--" to all cpbar lines), then whole target frame was missing. so I can't testing with cpbar.
btw that bug is not from alt power bar, threat bar, totem bar, rune bar, eclipse bar. is this "only me" kind problem?
yes, you are
Report comment to moderator  
Reply With Quote
Unread 05-25-11, 05:12 PM  
Lorenzo
A Kobold Labourer

Forum posts: 0
File comments: 15
Uploads: 0
Originally posted by mikenavi
You have to test internal layout modules: switch off powerbar funcion for example, and find buggy frame that making this effect.
well I tried to disable combo point bar(add some "--" to all cpbar lines), then whole target frame was missing. so I can't testing with cpbar.
btw that bug is not from alt power bar, threat bar, totem bar, rune bar, eclipse bar. is this "only me" kind problem?
Report comment to moderator  
Reply With Quote
Unread 05-25-11, 03:54 AM  
mikenavi
A Kobold Labourer

Forum posts: 0
File comments: 40
Uploads: 0
Originally posted by lumenatra
I'm a little bit lost as to how I move the cast bar frames... I have oUF and can move every other frame I want just fine but I can't seem to find cast bars anyway. Am I missing an addon?
There are no option to move it with oUF_MovableFrames.
To move player castbar you have to edit lib.lua in 502 and 504 string

Code:
s:SetPoint("BOTTOM",UIParent,"BOTTOM",16,280)
else
s:SetPoint("BOTTOM",UIParent,"BOTTOM",16,150)
510 & 512 string - target castbar position
Last edited by mikenavi : 05-25-11 at 03:54 AM.
Report comment to moderator  
Reply With Quote
Unread 05-25-11, 02:03 AM  
lumenatra
A Kobold Labourer

Forum posts: 0
File comments: 6
Uploads: 0
I'm a little bit lost as to how I move the cast bar frames... I have oUF and can move every other frame I want just fine but I can't seem to find cast bars anyway. Am I missing an addon?
Report comment to moderator  
Reply With Quote
Unread 05-24-11, 12:06 PM  
mikenavi
A Kobold Labourer

Forum posts: 0
File comments: 40
Uploads: 0
Re: Re: Re: How to change castbar's fontsize?

Originally posted by xjjxfpyyyf
How about the fontsize of threatbar?
201 string
Report comment to moderator  
Reply With Quote
Unread 05-24-11, 11:48 AM  
xjjxfpyyyf
A Kobold Labourer

Forum posts: 0
File comments: 15
Uploads: 0
Smile Re: Re: How to change castbar's fontsize?

Originally posted by mikenavi
you can find castbar fontsize in lib.lua - 541 and 544 string
How about the fontsize of threatbar?
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: