oUF_coree is my layout for oUF (a Unitframe framework made by haste).
You need to install oUF which can be found at ixo.no/git/oUF.git/ or at WoW Interface.
A very big help for me was P3lim's work. I used his layout as a "guide" in order to know more about how these layouts work.
oUF_coree includes unitframes for player, target, tot, focus, focustarget, pet, party, raid, maintank and mainassist.
Originally posted by Deathuk Hi, there?
Really nice work. It's pretty good, I like it!
Two more question.
1.How to add the space between raidframes.
I changed the scale of raidframes, now it's too close between each member.
2.My character name is 8words, the frame only show 5 words. I changed the width to 180 and height to 20, so how to edit the code in order to show my name correctly?
Thank you so much
1. question: change the underlined numbers
Code:
for i = 1, 5 do
local RaidGroup = oUF:Spawn("header", "oUF_Raid" .. i)
RaidGroup:SetManyAttributes("groupFilter", tostring(i), "showRaid", true, "yOffset", 3, "point", "BOTTOM", "sortDir", "ASC")
table.insert(Raid, RaidGroup)
if i == 1 then
RaidGroup:SetPoint("TOPLEFT", UIParent, 15, -15)
else
RaidGroup:SetPoint("TOPLEFT", Raid[i-1], "TOPRIGHT", 3, 0)
end
RaidGroup:Show()
end
2. question: change the underlined number
Code:
oUF.Tags["[coreename]"] = function(u)
local name = UnitName(u)
return utf8sub(name, 5, false)
end
Quote:
Originally posted by kkam
Is it possible to only show debuffs caused by the player, and if so, how?
add this code to if(unit == "target") then
Code:
self.Auras.debuffFilter = "HARMFUL|PLAYER"
@ Cashtro: you need this code too, for the target and partyframes
Quote:
Originally posted by loctrinh01
Just got ouf_barfader, it's not fading any frame under any condition. Is there something I must do to within the .lua file?
I've been playing around with your layout for sometime now since v3.0 and have learnt allot,
With v3.12 Ive managed to get the name and level on the player/pet frames and change the textures used aswell along with the fonts, I've also reconfigure the the raid layout and got my party to show there targets (party targets).
With my limited knowledge I'm kinda stuck with one thing that's annoying my.
How do i get the pet frame to update its name when i use a vehicle? Like when i do the daily in the middle of the Dragonblight where you have to mount a dragon and shoot down the other dragons.
All the name shows is ?? when i use any vehicle and Not the Level and Name
Any help given appreciated and thanks for making learning fun again
Hi, there?
Really nice work. It's pretty good, I like it!
Two more question.
1.How to add the space between raidframes.
I changed the scale of raidframes, now it's too close between each member.
2.My character name is 8words, the frame only show 5 words. I changed the width to 180 and height to 20, so how to edit the code in order to show my name correctly?
I dont recall changing anything, yet, since i logged on today the little red diamond that would show who has the aggro is now a black square. Could you help me fix it?