Download
(101Kb)
Download
Updated: 09-24-12 11:55 PM
Addon for:
oUF.
Pictures
File Info
Updated:09-24-12 11:55 PM
Created:01-04-09 06:56 PM
Downloads:22,945
Favorites:82
MD5:

oUF Freeb  Popular! (More than 5000 hits)

Version: 4.7.1
by: Freebaser [More]

Supported oUF Version: 1.6.x

Supported Units
-- player
-- target
-- targettarget
-- pet
-- focus
-- vehicle
-- boss frames


Supported Plugins
-- oUF_Experience
-- oUF_Smooth


Make the frames movable! oUF_MovableFrames

http://github.com/freebaser/oUF_Freeb/commits/master

v4.7.1
-- update some class elements
-- minor fixes

v4.7
-- update for oUF 1.6 and wow 5.0

v4.6.1
-- minor fix to avoid error on ptr

v4.6
-- various fixes

v4.5.1
-- tag fixes

v4.5
-- AltPowerBar
-- boss castbars
-- re-work spawning
-- add power text
-- various tweaks

v4.4
-- eclipse bar
-- enable focus castbar

v4.3.2
-- fix raid bg color
-- pixel border option

v4.3.1
-- fix background colors
-- add experience text

v4.3
-- update for oUF_Experience
-- add some color options
-- font outline
-- hp/power height option

v4.1 / 4.2
-- update for oUF changes
-- include oUF core

v4.0
-- live and beta compatible(beta requires newest oUF http://github.com/haste/oUF)

v3.1
-- update rune support

v3.0
-- support for oUF 1.4

v2.6
-- focus target
-- oUF_Totembar support
-- oUF_WeaponEnchant support
-- disable portrait option
-- scale option

v2.5
-- class colored bar option
-- aura border option
-- add tag for raid info(dead, d/c, ghost)

v2.4
-- fix boss frames
-- very basic group/raid frames(need to rename freebraid.lua file to work!)

v2.3
-- healcomm support(disabled by default)
-- fix for boss frame debuffs

v2.2
-- various fixes and tweaks
-- boss frames

v2.1
-- add aura saturation
-- add aura timers
-- fix nil value
-- misc. tweaks

v2.0
-- Complete rewrite
-- different look

v 1.5
-- update for 3.2
-- fix cpoints
-- improved druid mana
-- changed auras a bit on the target frame

Version 1.41
-- oUF_RuneBar support
-- minor fix to pet debuffs

Version 1.4
-- druid mana support(credits to P3lim)
-- oUF_Swing support
-- Truncate names and castbar names
-- Removed Party and Raid Frames
-- Health bar fades red when less than 50%
-- Moved text postions

Version 1.3
-- master loot icon
-- removed font outline
-- added font shadow
-- some buff tweaks
-- works with 1.3.3

Version 1.2.2
-- update for oUF_Experience

Version 1.2.1
-- Health Gradient fix

Version 1.2
-- Castbar options in lua
-- Raid power option in lua
-- Buff size increased
-- disabled oUF_Smooth for the Power Bar(unstable results with rage)

Version 1.1
-- Moved aura count position
-- Disallow vehicle swap(vehicle is now the pet frame)
-- BarFader support
-- Adjust Raid Icon size and position
-- Changed texture and colors a bit
-- localized font
-- Changed Unit Name to the new Tag system
-- Add level to target name
-- Add resting and pvp icon
-- Add ReadyCheck
-- Healthbar color gradient
Post A Reply Comment Options
Unread 01-26-09, 07:33 AM  
Freebaser
A Molten Kobold Bandit
 
Freebaser's Avatar
AddOn Author - Click to view AddOns

Forum posts: 135
File comments: 307
Uploads: 10
Look at the previous post. Where it says party:Show() and v:Show() change it to party:Hide() and v:Hide()
Report comment to moderator  
Reply With Quote
Unread 01-26-09, 07:19 AM  
Garry
A Kobold Labourer
 
Garry's Avatar
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 159
Uploads: 6
I only have one request.

Could you add option/s to disable the party/raid layout?

The reason is, that i want to use ur grid layout

Greets
Report comment to moderator  
Reply With Quote
Unread 01-25-09, 10:46 PM  
Freebaser
A Molten Kobold Bandit
 
Freebaser's Avatar
AddOn Author - Click to view AddOns

Forum posts: 135
File comments: 307
Uploads: 10
Originally posted by khangg
Is there a way to hide party in raid, else show party?
Yes, at the end of the .lua file you can make this change
Code:
if(GetNumRaidMembers() > 5) then
			-- Show party in raid?
			party:Hide()
			for i,v in ipairs(raid) do v:Show() end
		else
			party:Show()
			for i,v in ipairs(raid) do v:Hide() end
		end
Report comment to moderator  
Reply With Quote
Unread 01-25-09, 10:41 PM  
khangg
An Aku'mai Servant
AddOn Compiler - Click to view compilations

Forum posts: 35
File comments: 53
Uploads: 1
Is there a way to hide party in raid, else show party?
Report comment to moderator  
Reply With Quote
Unread 01-18-09, 06:35 PM  
Celil
A Defias Bandit

Forum posts: 2
File comments: 9
Uploads: 1
Thx for help. The error message is gone and it works now.
Report comment to moderator  
Reply With Quote
Unread 01-18-09, 02:50 PM  
Freebaser
A Molten Kobold Bandit
 
Freebaser's Avatar
AddOn Author - Click to view AddOns

Forum posts: 135
File comments: 307
Uploads: 10
Originally posted by Celil
Yes i'm using the new version of oUf and oUf_freeb. The plugins i use are oUF_CombatFeedback and oUF_DebuffHighlight. Both in the newest version i can get.
Could it perhaps be related to the code for the raidspawn was commented out? I mean this codepassage:



This body, I had commented out, because I have no use.
Yea, dont comment out the raid code and instead change v:Show() to v:Hide() here.
line 603

Code:
if(GetNumRaidMembers() > 5) then
			-- Show party in raid?
			party:Show()
			for i,v in ipairs(raid) do v:Show() end
		else
			party:Show()
			for i,v in ipairs(raid) do v:Hide() end
		end
Report comment to moderator  
Reply With Quote
Unread 01-18-09, 01:44 PM  
Celil
A Defias Bandit

Forum posts: 2
File comments: 9
Uploads: 1
Yes i'm using the new version of oUf and oUf_freeb. The plugins i use are oUF_CombatFeedback and oUF_DebuffHighlight. Both in the newest version i can get.
Could it perhaps be related to the code for the raidspawn was commented out? I mean this codepassage:

--local raid = {}
--for i = 1, 5 do
-- local raidgroup = oUF:Spawn('header', 'oUF_Raid'..i)
-- if(raidpowerBars)then
-- raidgroup:SetManyAttributes('groupFilter', tostring(i), 'showRaid', true, 'yOffSet', -3)
-- else
-- raidgroup:SetManyAttributes('groupFilter', tostring(i), 'showRaid', true, 'yOffSet', -2)
-- end
-- table.insert(raid, raidgroup)
-- if(i==1) then
-- raidgroup:SetPoint('TOPLEFT', UIParent, 5, -150)
-- else
-- raidgroup:SetPoint('TOP', raid[i-1], 'BOTTOM', 0, -10)
-- end
--end
This body, I had commented out, because I have no use.
Report comment to moderator  
Reply With Quote
Unread 01-18-09, 01:06 PM  
Freebaser
A Molten Kobold Bandit
 
Freebaser's Avatar
AddOn Author - Click to view AddOns

Forum posts: 135
File comments: 307
Uploads: 10
Originally posted by Celil
For two days I get the following error message:


Any idea where the come? The error appears always to be logged in or if a change occurs in the group.
Odd, I havent seen this error message. Are you using the newest version of oUF and oUF_Freeb. Also, what other oUF plugins are you using if any.
Report comment to moderator  
Reply With Quote
Unread 01-18-09, 08:15 AM  
Celil
A Defias Bandit

Forum posts: 2
File comments: 9
Uploads: 1
For two days I get the following error message:

Error: bad argument #1 to 'ipairs' (table expected, got nil)
File: Interface\AddOns\oUF_Freeb\oUF_Freeb.lua
Line: 606
Any idea where the come? The error appears always to be logged in or if a change occurs in the group.
Last edited by Celil : 01-18-09 at 08:22 AM.
Report comment to moderator  
Reply With Quote
Unread 01-16-09, 01:26 PM  
Freebaser
A Molten Kobold Bandit
 
Freebaser's Avatar
AddOn Author - Click to view AddOns

Forum posts: 135
File comments: 307
Uploads: 10
You want to turn off all auras? If thats the case you can comment out lines 417 through 462
Report comment to moderator  
Reply With Quote
Unread 01-16-09, 12:44 PM  
DJJoeJoe
A Murloc Raider
 
DJJoeJoe's Avatar
AddOn Compiler - Click to view compilations

Forum posts: 6
File comments: 172
Uploads: 1
I'm not sure where I can turn off display of auras 'buffs/debuffs' etc from target, player and focus frames.
__________________

Joetest - Ner'Zhul - Disciples of Death
Report comment to moderator  
Reply With Quote
Unread 01-11-09, 05:55 PM  
Nullie
A Kobold Labourer

Forum posts: 0
File comments: 6
Uploads: 0
Originally posted by Freebaser
Starting at line 586 you can change "Show" to "Hide"

Code:
if(GetNumRaidMembers() > 5) then
			-- Show party in raid?
			party:Show()
			for i,v in ipairs(raid) do v:Show() end
		else
			party:Show()
			for i,v in ipairs(raid) do v:Hide() end
		end
Works perfekt for party, havent tried it for a raid doh but i guess that works to

Thanks!
Last edited by Nullie : 01-12-09 at 12:30 PM.
Report comment to moderator  
Reply With Quote
Unread 01-11-09, 02:27 PM  
Freebaser
A Molten Kobold Bandit
 
Freebaser's Avatar
AddOn Author - Click to view AddOns

Forum posts: 135
File comments: 307
Uploads: 10
Starting at line 586 you can change "Show" to "Hide"

Code:
if(GetNumRaidMembers() > 5) then
			-- Show party in raid?
			party:Show()
			for i,v in ipairs(raid) do v:Show() end
		else
			party:Show()
			for i,v in ipairs(raid) do v:Hide() end
		end
Report comment to moderator  
Reply With Quote
Unread 01-11-09, 09:19 AM  
Nullie
A Kobold Labourer

Forum posts: 0
File comments: 6
Uploads: 0
turn of party/raid frames

hi i really like the frames for my toon but i have no need for the other frames,
are there any easy way to disable party and raid frames? thanks!
Report comment to moderator  
Reply With Quote
Unread 01-10-09, 04:54 PM  
Freebaser
A Molten Kobold Bandit
 
Freebaser's Avatar
AddOn Author - Click to view AddOns

Forum posts: 135
File comments: 307
Uploads: 10
Ill look into it

EDIT: updated with a fix
Last edited by Freebaser : 01-11-09 at 12:23 AM.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: