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,582
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 03-21-11, 04:40 AM  
Qulight
A Defias Bandit
AddOn Author - Click to view AddOns

Forum posts: 2
File comments: 330
Uploads: 7
Originally posted by creepy_inc
I can't seem to find the setpoint for the focus castbar, any chance you could point to the location? (line number maybe)
lib.lua
524 line
Report comment to moderator  
Reply With Quote
Unread 03-20-11, 03:00 PM  
creepy_inc
Guest

Join Date: Not Yet
Forum posts: 0
File comments: 0
Uploads: 0
I can't seem to find the setpoint for the focus castbar, any chance you could point to the location? (line number maybe)
Report comment to moderator  
Edit/Delete Message Reply With Quote
Unread 03-18-11, 08:59 AM  
Lorenzo
A Kobold Labourer

Forum posts: 0
File comments: 15
Uploads: 0
frame moving problem

I just figured out why cfg.lua doesn't move any frames...
healer layout is problem. try healer layout. then cfg.lua will working.
but you should have edit some lines in core.lua and lib.lua.
(for customizing, or localizing)

now here's question. how can I make raid frame bigger? not scale, real pixel size. I was looked every codes I really do. but I don't know yet.
Last edited by Lorenzo : 03-18-11 at 09:06 AM.
Report comment to moderator  
Reply With Quote
Unread 03-17-11, 01:01 PM  
arrcus
A Deviate Faerie Dragon

Forum posts: 15
File comments: 35
Uploads: 0
For those of you having a problem with the latest release, it's a folder within a folder. First folder should be "oUF_Qulight v0.1.3b", within that folder is "oUF_Quilight" which is the folder you extract to your addon folder
Report comment to moderator  
Reply With Quote
Unread 03-16-11, 05:50 PM  
arrcus
A Deviate Faerie Dragon

Forum posts: 15
File comments: 35
Uploads: 0
Originally posted by Vesimas
Yahi Open Lib.lua and search for this
Code:
lib.gen_castbar = function(f)
	if not cfg.Castbars then return end
	local cbColor = {95/255, 182/255, 255/255}
    local s = CreateFrame("StatusBar", "oUF_Castbar"..f.mystyle, f)
    s:SetHeight(18)
    s:SetWidth(f:GetWidth()-22)
	if f.mystyle == "focus" then
	s:SetWidth(200)
	end
    if f.mystyle == "player" then
	  s:SetHeight(20)
      s:SetWidth(300)
	  if cfg.HealFrames then
	  s:SetPoint("BOTTOM",UIParent,"BOTTOM",16,280)
	  else
	  s:SetPoint("BOTTOM",UIParent,"BOTTOM",16,150)
	  end
    elseif f.mystyle == "target" then
	  s:SetHeight(20)
      s:SetWidth(300)
	  if cfg.HealFrames then
	    s:SetPoint("BOTTOM",UIParent,"BOTTOM",16,320)
	  else
	  s:SetPoint("BOTTOM",UIParent,"BOTTOM",16,180)
	  end
There you can change width, height and position

Ok now the last two thing that i have to fix is how to move the threat bar and how to modify the text for health (i want only % colored by class)
Ah sweet, thanks for the tip.
Report comment to moderator  
Reply With Quote
Unread 03-14-11, 09:36 AM  
Vesimas
A Kobold Labourer

Forum posts: 0
File comments: 19
Uploads: 0
Originally posted by arrcus
Now I just need to figure out how to move the castbars :P
Yahi Open Lib.lua and search for this
Code:
lib.gen_castbar = function(f)
	if not cfg.Castbars then return end
	local cbColor = {95/255, 182/255, 255/255}
    local s = CreateFrame("StatusBar", "oUF_Castbar"..f.mystyle, f)
    s:SetHeight(18)
    s:SetWidth(f:GetWidth()-22)
	if f.mystyle == "focus" then
	s:SetWidth(200)
	end
    if f.mystyle == "player" then
	  s:SetHeight(20)
      s:SetWidth(300)
	  if cfg.HealFrames then
	  s:SetPoint("BOTTOM",UIParent,"BOTTOM",16,280)
	  else
	  s:SetPoint("BOTTOM",UIParent,"BOTTOM",16,150)
	  end
    elseif f.mystyle == "target" then
	  s:SetHeight(20)
      s:SetWidth(300)
	  if cfg.HealFrames then
	    s:SetPoint("BOTTOM",UIParent,"BOTTOM",16,320)
	  else
	  s:SetPoint("BOTTOM",UIParent,"BOTTOM",16,180)
	  end
There you can change width, height and position

Ok now the last two thing that i have to fix is how to move the threat bar and how to modify the text for health (i want only % colored by class)
Last edited by Vesimas : 03-14-11 at 09:47 AM.
Report comment to moderator  
Reply With Quote
Unread 03-14-11, 08:47 AM  
Vesimas
A Kobold Labourer

Forum posts: 0
File comments: 19
Uploads: 0
I have edited the lua for repositioning the various unitframe Now i need to understand how to move again threatbar on top of target and how to move the castbars. Some help pls?
Report comment to moderator  
Reply With Quote
Unread 03-13-11, 06:21 PM  
Kamina
A Kobold Labourer

Forum posts: 0
File comments: 5
Uploads: 0
Bufs

Can I somehow change buffs position from top right corner to left ?
Report comment to moderator  
Reply With Quote
Unread 03-13-11, 02:32 PM  
amd757
A Kobold Labourer

Forum posts: 0
File comments: 6
Uploads: 0
Re: about frame setting

Originally posted by Lorenzo
cfg.lua doesn't moving frames.
I just edit core.lua / lib.lua and now it's cool. but it's hard. for me...
Use OMF addon for moving frames =)
Report comment to moderator  
Reply With Quote
Unread 03-13-11, 06:19 AM  
Lorenzo
A Kobold Labourer

Forum posts: 0
File comments: 15
Uploads: 0
about frame setting

cfg.lua doesn't moving frames.
I just edit core.lua / lib.lua and now it's cool. but it's hard. for me...
Report comment to moderator  
Reply With Quote
Unread 03-12-11, 02:04 PM  
Vesimas
A Kobold Labourer

Forum posts: 0
File comments: 19
Uploads: 0
Originally posted by arrcus
Try using ouF Movable Frames

Now I just need to figure out how to move the castbars :P
Nice, going to try this If you find also how to move castbars tell me pls There is an option btw to resize them?
Report comment to moderator  
Reply With Quote
Unread 03-12-11, 01:18 PM  
arrcus
A Deviate Faerie Dragon

Forum posts: 15
File comments: 35
Uploads: 0
Originally posted by Vesimas
This is Epic O_o With a single addon i can remove Pitbull, Quartz, Grid, Elkano. Also going from 4mb to 300kb of memory usage O_o

But i have a little problem or i'm doing some mistake. I'm trying to move the unitframe for player and target by editing the cfg.lua but nothing happen :/

edit: also i can't find an option to move the raid frame
Try using ouF Movable Frames

Now I just need to figure out how to move the castbars :P
Last edited by arrcus : 03-12-11 at 01:19 PM.
Report comment to moderator  
Reply With Quote
Unread 03-12-11, 09:05 AM  
Vesimas
A Kobold Labourer

Forum posts: 0
File comments: 19
Uploads: 0
This is Epic O_o With a single addon i can remove Pitbull, Quartz, Grid, Elkano. Also going from 4mb to 300kb of memory usage O_o

But i have a little problem or i'm doing some mistake. I'm trying to move the unitframe for player and target by editing the cfg.lua but nothing happen :/

edit: also i can't find an option to move the raid frame
Last edited by Vesimas : 03-12-11 at 09:08 AM.
Report comment to moderator  
Reply With Quote
Unread 03-11-11, 08:25 AM  
gbart71
A Kobold Labourer

Forum posts: 1
File comments: 14
Uploads: 0
buff / debuff relocation

I saw someone had found where to change the location or positioning of the buff /debuff bar, but am not sure where that would be; for some reason, my puter' won't open .toc files where i can edit them at all; what should i change and / or how? any help would be great, as my minimap is blocking my current buff area. Thx!
Report comment to moderator  
Reply With Quote
Unread 03-10-11, 10:24 AM  
arrcus
A Deviate Faerie Dragon

Forum posts: 15
File comments: 35
Uploads: 0
That's not an option in any oUF layout :P You need to click the player then right click your target frame for the right click menu.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: