Download
(279Kb)
Download
Updated: 08-19-16 01:41 PM
Addon for:
oUF.
Pictures
File Info
Compatibility:
Legion (7.0.3)
Updated:08-19-16 01:41 PM
Created:05-11-12 03:45 AM
Downloads:4,426
Favorites:14
MD5:

oUF Mlight

Version: F7.0
by: Paopao001, EKE

simple separated from Altz-UI legion, staggers, new Resources, DH support, error fix.

BUT have some(LOTS) problem: to do any change, should edit lua file.

1.NO IN-GAME CONFIG, bad confing support
default settings are in core/int.lua
unitframe position settings are in unitframes/core.lua line 1368
raidframe position settings are in unitframes/raid.lua line 543
or edit \WTF\Account\your account\SavedVariables\oUF_Mlight.lua

2.OUF lib is include, but move function isnt work

3.will get lots taint from blizzard's default compactraid, although it isn't have any bad effect if u didn't use blizzard's default raidframe

Altz-UI
oUF_Mlight(old offical)
oUF_Mlight(Update)

or another update can be found in comments:
oUF_Mlight(MoP)#comments

thiner border
portrait
castbar bug fixed
Post A Reply Comment Options
Unread 10-16-14, 06:42 PM  
nectary
A Kobold Labourer
 
nectary's Avatar
Premium Member

Forum posts: 0
File comments: 15
Uploads: 0
6.0

Is there any planned update for this?
Report comment to moderator  
Reply With Quote
Unread 04-30-13, 08:20 AM  
Kenyiro
A Kobold Labourer
 
Kenyiro's Avatar

Forum posts: 0
File comments: 2
Uploads: 0
Exclamation Error Any suggest to fix it??

Message: Interface\AddOns\oUF_Mlight\tags.lua:87: attempt to index field 'TagEvents' (a nil value)
Time: 04/30/13 16:19:14
Count: 1
Stack: Interface\AddOns\oUF_Mlight\tags.lua:87: in main chunk

Locals: addon = "oUF_Mlight"
ns = <table> {
cfg = <unnamed> {
}
}
cfg = <unnamed> {
CBwidth = 250
portrait = false
spfont = "Interface\AddOns\oUF_Mlight\media\spfont.TTF"
auras = true
customsp = true
CBuserplaced = true
buttonTex = "Interface\AddOns\oUF_Mlight\media\buttontex"
focusCBposition = <table> {
}
glowTex = "Interface\AddOns\oUF_Mlight\media\glowTex"
hpheight = 0.9
spfontsize = 25
Ewidth = 220
fontflag = "OUTLINE"
height = 16
combofontsize = 25
spp = <table> {
}
smoothhealthcolor = true
scale = 1
Rheight = 6
Runesp = <table> {
}
fontsize = 12
width1 = 80
classcolor = false
playerCBposition = <table> {
}
combop = <table> {
}
texture = "Interface\Buttons\WHITE8x8"
mediaPath = "Interface\AddOns\oUF_Mlight\media\"
onlyShowPlayer = false
Eclipsep = <table> {
}
Eheight = 8
Euserplaced = false
0 = <userdata>
castbars = true
width = 215
Rwidth = 220
bossframes = true
Ruserplaced = false
powerClass = true
auraborders = true
targetCBposition = <table> {
}
font = "Interface\AddOns\oUF_Mlight\media\font.TTF"
cbIconsize = 20
}
siValue = <function> defined @Interface\AddOns\oUF_Mlight\tags.lua:4
utf8sub = <function> defined @Interface\AddOns\oUF_Mlight\tags.lua:15
hex = <function> defined @Interface\AddOns\oUF_Mlight\tags.lua:45
(*temporary) = nil
(*temporary) = <function> defined @Interface\AddOns\oUF_Mlight\tags.lua:81
(*temporary) = 0.65
(*temporary) = 0.15
(*temporary) = 0.85
(*temporary) = "attempt to index field 'TagEvents' (a nil value)"
Report comment to moderator  
Reply With Quote
Unread 05-27-12, 12:50 PM  
Soulmaker
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
Originally Posted by Paopao001
Originally Posted by Soulmaker
Eyo sup. I got a question. I wish u could tell me how to quit the buffs and castbars please. Thank you, and awesome work.
There's an option in cfg.lua.Set it to false can disable all castbars.
Lua Code:
  1. cfg.castbars = true   -- disable all castbars

It's a litte complex to delete the buffs.There are three kinds of unitframe displaying auras(including both buffs and debuffs),target, focus and boss.In core.lua,you can find things below,try to edit it as I do.You need to be careful when you edit the code.
Lua Code:
  1. --========================--
  2.     --  Target
  3.     --========================--
  4.     target = function(self, ...)
  5.         func(self, ...)
  6.        
  7.         -- auras --
  8.         if cfg.auras then
  9.             local Auras = CreateFrame("Frame", nil, self)
  10.             Auras:SetHeight(cfg.height*2)
  11.             Auras:SetWidth(cfg.width)
  12.             Auras:SetPoint("BOTTOMLEFT", self, "TOPLEFT", 0, 4)
  13.             Auras.spacing = 6
  14.             Auras.gap = true
  15.             Auras.size = cfg.height+2
  16.             Auras.initialAnchor = "BOTTOMLEFT"
  17.  
  18.             Auras.PostCreateIcon = auraIcon
  19.             Auras.PostUpdateIcon = PostUpdateIcon
  20.             Auras.CustomFilter = CustomFilter
  21.             Auras.onlyShowPlayer = cfg.onlyShowPlayer
  22.            
  23.             self.Auras = Auras
  24.             self.Auras.numDebuffs = 8
  25.             self.Auras.numBuffs = 16
  26.         end
Lua Code:
  1. --========================--
  2.     --  Target
  3.     --========================--
  4.     target = function(self, ...)
  5.         func(self, ...)
  6.        
  7.         -- auras --
  8.         if cfg.auras then
  9.             -- for most lines just change Auras into Debuffs
  10.             local Debuffs = CreateFrame("Frame", nil, self)
  11.             Debuffs:SetHeight(cfg.height*2)
  12.             Debuffs:SetWidth(cfg.width)
  13.             Debuffs:SetPoint("BOTTOMLEFT", self, "TOPLEFT", 0, 4)
  14.             Debuffs.spacing = 6
  15.             Debuffs.gap = true
  16.             Debuffs.size = cfg.height+2
  17.             Debuffs.initialAnchor = "BOTTOMLEFT"
  18.  
  19.             Debuffs.PostCreateIcon = auraIcon
  20.             Debuffs.PostUpdateIcon = PostUpdateIcon
  21.             Debuffs.CustomFilter = CustomFilter
  22.             Debuffs.onlyShowPlayer = cfg.onlyShowPlayer
  23.            
  24.             self.Debuffs = debuffs
  25.             -- be careful it's NOT self.Debuffs = Debuffs
  26.             self.Auras.numDebuffs = 16
  27.             -- you may change the number of debuffs
  28.             --self.Auras.numBuffs = 16 --delete this line
  29.         end
Thank you... you just have saved my life
Report comment to moderator  
Reply With Quote
Unread 05-26-12, 09:56 PM  
Paopao001
A Fallenroot Satyr
 
Paopao001's Avatar
AddOn Author - Click to view AddOns

Forum posts: 20
File comments: 354
Uploads: 19
Originally Posted by Soulmaker
Eyo sup. I got a question. I wish u could tell me how to quit the buffs and castbars please. Thank you, and awesome work.
There's an option in cfg.lua.Set it to false can disable all castbars.
Lua Code:
  1. cfg.castbars = true   -- disable all castbars

It's a litte complex to delete the buffs.There are three kinds of unitframe displaying auras(including both buffs and debuffs),target, focus and boss.In core.lua,you can find things below,try to edit it as I do.You need to be careful when you edit the code.
Lua Code:
  1. --========================--
  2.     --  Target
  3.     --========================--
  4.     target = function(self, ...)
  5.         func(self, ...)
  6.        
  7.         -- auras --
  8.         if cfg.auras then
  9.             local Auras = CreateFrame("Frame", nil, self)
  10.             Auras:SetHeight(cfg.height*2)
  11.             Auras:SetWidth(cfg.width)
  12.             Auras:SetPoint("BOTTOMLEFT", self, "TOPLEFT", 0, 4)
  13.             Auras.spacing = 6
  14.             Auras.gap = true
  15.             Auras.size = cfg.height+2
  16.             Auras.initialAnchor = "BOTTOMLEFT"
  17.  
  18.             Auras.PostCreateIcon = auraIcon
  19.             Auras.PostUpdateIcon = PostUpdateIcon
  20.             Auras.CustomFilter = CustomFilter
  21.             Auras.onlyShowPlayer = cfg.onlyShowPlayer
  22.            
  23.             self.Auras = Auras
  24.             self.Auras.numDebuffs = 8
  25.             self.Auras.numBuffs = 16
  26.         end
Lua Code:
  1. --========================--
  2.     --  Target
  3.     --========================--
  4.     target = function(self, ...)
  5.         func(self, ...)
  6.        
  7.         -- auras --
  8.         if cfg.auras then
  9.             -- for most lines just change Auras into Debuffs
  10.             local Debuffs = CreateFrame("Frame", nil, self)
  11.             Debuffs:SetHeight(cfg.height*2)
  12.             Debuffs:SetWidth(cfg.width)
  13.             Debuffs:SetPoint("BOTTOMLEFT", self, "TOPLEFT", 0, 4)
  14.             Debuffs.spacing = 6
  15.             Debuffs.gap = true
  16.             Debuffs.size = cfg.height+2
  17.             Debuffs.initialAnchor = "BOTTOMLEFT"
  18.  
  19.             Debuffs.PostCreateIcon = auraIcon
  20.             Debuffs.PostUpdateIcon = PostUpdateIcon
  21.             Debuffs.CustomFilter = CustomFilter
  22.             Debuffs.onlyShowPlayer = cfg.onlyShowPlayer
  23.            
  24.             self.Debuffs = debuffs
  25.             -- be careful it's NOT self.Debuffs = Debuffs
  26.             self.Auras.numDebuffs = 16
  27.             -- you may change the number of debuffs
  28.             --self.Auras.numBuffs = 16 --delete this line
  29.         end
Last edited by Paopao001 : 05-26-12 at 09:58 PM.
Report comment to moderator  
Reply With Quote
Unread 05-25-12, 03:54 PM  
Soulmaker
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
Eyo sup. I got a question. I wish u could tell me how to quit the buffs and castbars please. Thank you, and awesome work.
Report comment to moderator  
Reply With Quote
Unread 05-12-12, 04:27 AM  
Paopao001
A Fallenroot Satyr
 
Paopao001's Avatar
AddOn Author - Click to view AddOns

Forum posts: 20
File comments: 354
Uploads: 19
Thanks.
Actually it's not difficult to make a UI like mine.
Things on the screenshot are Little panels,ractionbarsyler&ractionbuttonstyler,sExperiencebar,a simple minimap and this layout.(And of course there are other addons more than you can see.)
I speak Chinese.So there are some Chinese words in my UI.
It will take a few days to edit these words before i share it on this site.
Report comment to moderator  
Reply With Quote
Unread 05-12-12, 02:06 AM  
wakolv
An Aku'mai Servant

Forum posts: 38
File comments: 37
Uploads: 0
Fantastic UI...

Yes please share it... 10/10
Report comment to moderator  
Reply With Quote
Unread 05-11-12, 07:26 AM  
L3n1n
A Fallenroot Satyr
 
L3n1n's Avatar
AddOn Author - Click to view AddOns

Forum posts: 20
File comments: 86
Uploads: 2
Awesome Share your UI.
Last edited by L3n1n : 05-11-12 at 07:42 AM.
Report comment to moderator  
Reply With Quote
Unread 05-11-12, 07:16 AM  
shakelight
A Kobold Labourer
 
shakelight's Avatar

Forum posts: 0
File comments: 3
Uploads: 0
试一试~~~8错
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: