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,943
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-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, 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-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-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-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-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, 04:23 PM  
khangg
An Aku'mai Servant
AddOn Compiler - Click to view compilations

Forum posts: 35
File comments: 53
Uploads: 1
Originally posted by Freebaser
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
http://www.upload3r.com/serve/260109/1233008549.png

That's what happens
Report comment to moderator  
Reply With Quote
Unread 01-26-09, 04:58 PM  
Freebaser
A Molten Kobold Bandit
 
Freebaser's Avatar
AddOn Author - Click to view AddOns

Forum posts: 135
File comments: 307
Uploads: 10
Im not sure how you got that. This is exactly what your code should be at the end of the .lua Copy/Paste it if you need

Code:
partyToggle:RegisterEvent('PLAYER_LOGIN')
partyToggle:RegisterEvent('RAID_ROSTER_UPDATE')
partyToggle:RegisterEvent('PARTY_LEADER_CHANGED')
partyToggle:RegisterEvent('PARTY_MEMBERS_CHANGED')
partyToggle:SetScript('OnEvent', function(self)
	if(InCombatLockdown()) then
		self:RegisterEvent('PLAYER_REGEN_ENABLED')
	else
		self:UnregisterEvent('PLAYER_REGEN_ENABLED')
		if(GetNumRaidMembers() > 5) then
			-- Show party in raid?
			party:Hide()
			for i,v in ipairs(raid) do v:Hide() end
		else
			party:Hide()
			for i,v in ipairs(raid) do v:Hide() end
		end
	end
end)
Report comment to moderator  
Reply With Quote
Unread 01-28-09, 01:25 PM  
Megerka
A Kobold Labourer

Forum posts: 0
File comments: 30
Uploads: 0
where is castbars and cast-safezone in new (1.3) version oUF Freeb?
Report comment to moderator  
Reply With Quote
Unread 01-28-09, 01:30 PM  
Freebaser
A Molten Kobold Bandit
 
Freebaser's Avatar
AddOn Author - Click to view AddOns

Forum posts: 135
File comments: 307
Uploads: 10
should be at the top of the .lua file

Code:
-- Toggle Castbars
local castBars = true
local partycastBars = false
local castsafeZone = false
Report comment to moderator  
Reply With Quote
Unread 01-28-09, 03:02 PM  
Megerka
A Kobold Labourer

Forum posts: 0
File comments: 30
Uploads: 0
no... nothing happens... =(((

ps
oUF 1.3.3 + oUF Freeb 1.3 =((
Report comment to moderator  
Reply With Quote
Unread 01-28-09, 03:39 PM  
Freebaser
A Molten Kobold Bandit
 
Freebaser's Avatar
AddOn Author - Click to view AddOns

Forum posts: 135
File comments: 307
Uploads: 10
Have you modified the layout in anyway. Im not having any problems.
Report comment to moderator  
Reply With Quote
Unread 02-14-09, 05:01 PM  
Freebaser
A Molten Kobold Bandit
 
Freebaser's Avatar
AddOn Author - Click to view AddOns

Forum posts: 135
File comments: 307
Uploads: 10
v1.4 does not have group or raid support. I suggest using oUF_Freebgrid in its place or stick to the previous versions. See changelog for other updates
Report comment to moderator  
Reply With Quote
Unread 02-15-09, 11:58 AM  
Vaihnae
A Kobold Labourer
AddOn Compiler - Click to view compilations

Forum posts: 0
File comments: 9
Uploads: 1
I have a lil problem when I use a vehicle...
for instance, the catapult in Wintergrasp, when I cast the Plague Barrel thing, the standart blizzard castbar pops up.

Any suggestions?
Report comment to moderator  
Reply With Quote
Unread 02-15-09, 12:37 PM  
Freebaser
A Molten Kobold Bandit
 
Freebaser's Avatar
AddOn Author - Click to view AddOns

Forum posts: 135
File comments: 307
Uploads: 10
Thats a problem I thought haste fixed in one of the recent oUF updates. Although creating a castbar for the pet frame within the layout should fix the issue.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: