Download
(25Kb)
Download
Updated: 02-15-10 03:16 PM
Pictures
File Info
Updated:02-15-10 03:16 PM
Created:02-09-10 11:47 AM
Downloads:3,451
Favorites:15
MD5:

oUF Ocu

Version: 0.5
by: Ocu [More]

DISCLAIMER: This is an indirect ripoff of a screenshot by Led++, permission to be released has been granted. The credit for the idea goes to him.

--[[ Units Supported ]]--

Player
Target
Pet
Focus
Focus Target
Party

- No TargetTarget or Raid.

--[[ Notes ]]--

You might need to tinker around with the offset settings on the backdrops to make it look perfect.
If you're not comfortable with doing that, this layout is probably not for you.

The layout includes backdrop for actionbars and a top / bottom backdrop. This can be disabled through two simple booleans in settings.lua.

--[[ Credits ]]--

Layout Base: ALZA
Idea: Led ++

If you want to use this layout in your compilation, please include the proper credits.

v 0.5
One should not show player when there's only going to be spawned a maximum of 4 party frames. :|

v 0.4
Party frames betaish.

v 0.3
Added some options to hide the default oUF Runebar and The default runes.

v 0.2
Fixed the Portrait framestrata

v 0.1
Initial Release
Optional Files (0)


Post A Reply Comment Options
Unread 03-15-10, 05:10 AM  
Ocu
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 1
File comments: 25
Uploads: 4
1. You should be able to do this by adding an extra info tag (look in the style.lua) and anchor it to the center. ( [curmp] iirc will work wonders for just that.)

2. This will require a lot more work than i want to put in, currently the textures are anchored to the portrait, and will show / hide with it. I do not plan on changin that, as i use the portrait to show my own character (i'm a bit of an egotrip)

3. Not sure what you mean here, but if you want the target hppercent to show at all times, this is not possible as you have to have a target to get the value.

Sorry for the late answer, been kind of busy lately

Originally posted by IcanBlink
Hi!

Very nice layout i`m using it right now, with some little edits.

there are some thing that i cant manage with them :

1. i want to show on target`s bar , in middle, the curent mana. Like on players bar in left,but on middle`s target bar.

2. i did too change the target of portret, from player to target , but i want the position of portrait to ramain anchored with the player`s bar, and the background from portret to be visible all the time.

3. Same thing with % hp like the portret.


GJ !

edit: forgive my noobish write
Last edited by Ocu : 05-19-10 at 02:58 AM.
Report comment to moderator  
Reply With Quote
Unread 02-26-10, 02:02 PM  
IcanBlink
A Defias Bandit
 
IcanBlink's Avatar

Forum posts: 2
File comments: 3
Uploads: 0
Hi!

Very nice layout i`m using it right now, with some little edits.

there are some thing that i cant manage with them :

1. i want to show on target`s bar , in middle, the curent mana. Like on players bar in left,but on middle`s target bar.

2. i did too change the target of portret, from player to target , but i want the position of portrait to ramain anchored with the player`s bar, and the background from portret to be visible all the time.

3. Same thing with % hp like the portret.


GJ !

edit: forgive my noobish write
Last edited by IcanBlink : 02-26-10 at 02:03 PM.
Report comment to moderator  
Reply With Quote
Unread 02-24-10, 08:51 PM  
Jlight
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
man this unit frames are awesome but if u can help me with some tweaks like buffs of focus target and names, names for tot too if u can help me with this please i tried everything but im a f***tard doing it, and sorry to bother u with those question maybe its really ez to do but i have 0/450 in lua files
Last edited by Jlight : 02-25-10 at 02:10 AM.
Report comment to moderator  
Reply With Quote
Unread 02-15-10, 01:09 PM  
JackOnTheMap
A Murloc Raider

Forum posts: 8
File comments: 147
Uploads: 0
OHHHH! Partyframes! Nice.
Report comment to moderator  
Reply With Quote
Unread 02-12-10, 07:33 AM  
Led ++
A Frostmaul Preserver
 
Led ++'s Avatar
AddOn Author - Click to view AddOns

Forum posts: 254
File comments: 68
Uploads: 1
Hehe, I see the oUF Layout is going good Ocu.

have loads of fun with it! Love how you recreated it so good!

Cheers,

led ++
__________________
Report comment to moderator  
Reply With Quote
Unread 02-10-10, 07:57 PM  
Arethea
A Kobold Labourer

Forum posts: 0
File comments: 18
Uploads: 0
Thank you very much. Worked perfectly!
You explained it so well so even a dumb person like me could understand it, thank you for that
Report comment to moderator  
Reply With Quote
Unread 02-10-10, 01:41 PM  
Ocu
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 1
File comments: 25
Uploads: 4
@Arethea:

Alright, here goes. Please note that i'm going to refer to line-numbers below, so if you dont have a text editor that show's line-numbers, check out notepad++.

2.

To change the position of the castbar, open up style.lua and go to line 537:
Code:
self.Castbar:SetPoint('CENTER', UIParent, 'CENTER', -5, -250.0000036550091)
Change the x (-5) and y (-250.00xx) to whatever you feel like is right.

To enable text on the player castbar, delete line 541 and 554:

Code:
self.Castbar.Text:Hide()
and
self.Castbar.Time:Hide()


1.
Now, question number one requires a bit more editing;

Go to line 400 and replace

Code:
local info = MakeFS(hp)
	if(unit=="player") then
		info:SetPoint("RIGHT", hp, "LEFT", -15, 2)
		info:SetJustifyH("RIGHT")
		self:Tag(info, "|cffffff33[perhp]|r|cff33CCCC%|r")
    elseif(unit=="target") then
        info:SetPoint("RIGHT", hp, "RIGHT")
        info:SetJustifyH("RIGHT")
        info:SetPoint("RIGHT")
        self:Tag(info, "[difficulty][plus]|r [name] ")
with this:

Code:
    local info = MakeFS(hp)
    local info2 = MakeFS(hp)
    if(unit=="target") then
        info:SetPoint("RIGHT", hp, "RIGHT")
        info:SetJustifyH("RIGHT")
        info:SetPoint("RIGHT")
        self:Tag(info, "[difficulty][plus]|r [name] ")
	info2:SetPoint("RIGHT", "oUF_player", "LEFT", -15, 2)
	info2:SetJustifyH("RIGHT")
	self:Tag(info2, "|cffffff33[perhp]|r|cff33CCCC%|r")
Give me a headsup if it doesnt work.
Report comment to moderator  
Reply With Quote
Unread 02-09-10, 05:18 PM  
Arethea
A Kobold Labourer

Forum posts: 0
File comments: 18
Uploads: 0
Hello! I LOVE this layout, one of the best ones I've seen. I had to try it out and really liked it with some minor tweaks. I need some help though because I really lack knowledge in lua coding.

1. I changed the portrait so it shows up on my target instead. However, the % in the portrait is still my health %, I would like it to show my targets % instead. Some help here would be nice.

2. Is there any way to move the casting bars? I checked the lua but my lack in lua coding isn't making it easy for me. I also want my castbar to show spellname and cast time.


Would be very greatfull if you could help me with these "minior" things so I can enjoy this awesome layout at its fullest.


Arethea - Lightning's Blade EU
Report comment to moderator  
Reply With Quote
Unread 02-09-10, 03:34 PM  
OarisJM
A Murloc Raider

Forum posts: 4
File comments: 28
Uploads: 0
Really like this. Think I know the one it's based on and it was made with Stuf and kgPanels, which was such an awful lot of work. This is great. Thanks to you both.
Report comment to moderator  
Reply With Quote
Unread 02-09-10, 03:06 PM  
Zagrei
A Cobalt Mageweaver
 
Zagrei's Avatar
AddOn Compiler - Click to view compilations

Forum posts: 246
File comments: 9
Uploads: 7
Re: Re: Me Liiiike :D

Originally posted by Ocu
Oh yeah, that's the default ouf runebar, i'll edit the boolean to toggle that on and off in settings.lua.

Raid and party frames are incoming, though i dont have an estimate on that yet.

edit: New version with refined rune options pending.

Ahh, thanks a bundle Once the servers are back up, I'll continue setting it up
__________________
Report comment to moderator  
Reply With Quote
Unread 02-09-10, 02:42 PM  
Ocu
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 1
File comments: 25
Uploads: 4
Re: Me Liiiike :D

Oh yeah, that's the default ouf runebar, i'll edit the boolean to toggle that on and off in settings.lua.

Raid and party frames are incoming, though i dont have an estimate on that yet.

edit: New version with refined rune options pending.

Originally posted by Zagrei
One question: I play a DK, and there is a Rune Bar just sitting there in the UI. I don't have oUF_RuneBar installed, and I turned off the Rune Bar setting in the LUA, but it doesn't budge. Any tips on how to fix this? Just a minor nuisance

EDIT: If you ever decide to create Raid Frames, I think a style like this would be really nice:
http://www.wowinterface.com/download...8-kamiiUI.html [/b]
Last edited by Ocu : 02-09-10 at 03:00 PM.
Report comment to moderator  
Reply With Quote
Unread 02-09-10, 02:32 PM  
Zagrei
A Cobalt Mageweaver
 
Zagrei's Avatar
AddOn Compiler - Click to view compilations

Forum posts: 246
File comments: 9
Uploads: 7
Me Liiiike :D

Very well done... I like it! Now I don't have to use Stuf to get this look (Hooray!)

I too wish it had Raid Frames to match, but I'll live

One question: I play a DK, and there is a Rune Bar just sitting there in the UI. I don't have oUF_RuneBar installed, and I turned off the Rune Bar setting in the LUA, but it doesn't budge. Any tips on how to fix this? Just a minor nuisance


EDIT: If you ever decide to create Raid Frames, I think a style like this would be really nice:
http://www.wowinterface.com/download...8-kamiiUI.html
__________________
Last edited by Zagrei : 02-09-10 at 02:36 PM.
Report comment to moderator  
Reply With Quote
Unread 02-09-10, 02:18 PM  
JackOnTheMap
A Murloc Raider

Forum posts: 8
File comments: 147
Uploads: 0
Love it.

Wish it had raid frames though. I know there are alternatives but still
Report comment to moderator  
Reply With Quote
Unread 02-09-10, 01:20 PM  
wertzu_9
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 1
File comments: 42
Uploads: 1
best ouf layout i´ve ever seen, great job!

Originally posted by Retraluna
hmm ... weird
das ouf layout zu deinem ui, nun kanst stuf weghauen ^^
Last edited by wertzu_9 : 02-09-10 at 01:25 PM.
Report comment to moderator  
Reply With Quote
Unread 02-09-10, 12:53 PM  
Retraluna
A Murloc Raider
 
Retraluna's Avatar
AddOn Author - Click to view AddOns

Forum posts: 9
File comments: 78
Uploads: 2
Originally posted by Ocu
Weird, it's zipped straight from my interface folder.

I'll fix it and upload a new version.
hmm ... weird
__________________
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: