Download
(818Kb)
Download
Updated: 09-16-13 07:43 PM
Pictures
File Info
Updated:09-16-13 07:43 PM
Created:01-19-09 05:04 AM
Downloads:62,330
Favorites:241
MD5:

oUF Freebgrid  Popular! (More than 5000 hits)

Version: 6.9.13
by: Freebaser [More]

Supported oUF Version: 1.6.x

Party/Raid unit frames using the oUF framework.

Units Supported:
-- party
-- raid
-- maintanks
-- pets and vehicles

Features:
-- Class corner indicators
-- Raid (de)buffs icons with priority
-- Class dispel icons
-- Aggro highlighting
-- Mouseover highlight
-- Out of range arrow
-- Range alpha
-- Heal Predication bar and/or text
-- Alt Power text
-- Health text - percent, deficit or actual
-- Vertical and horizontal layouts
-- Mana bars
-- Target and Focus border
-- AFK / DC timer
-- SharedMedia support
-- oRA3 tank support

FAQs
/freeb will unlock the frames
/freeb <something> will open the interface panel.

oUF is included in this addon but it is only accessible to Freebgrid.

Q: How do I create new indicators?
A: Edit tags.lua (some lua skills required). I've added at least one indicator to every healing class, so you can use those as an example(always open to suggestions). Then add the tag name to your class table at the bottom of the tags.lua.

Q: How do I add raid (de)buffs?
A: Use the aura_list.lua file to add spell names or GetSpellInfo(spellid) to the aura table and set a priority number >= 1(Higher numbers show over lower).

Most of the general setting can be done in the interface panel and usually requires a ReloadUI when your done.

version 6.9.12
-- fix toc

version 6.9.11
-- aura_list update
-- oUF update

version 6.9.10
-- fix heal texture and aura border

version 6.9.9
-- fix for 5.1
-- toc bump
-- aura list update

version 6.9.8
-- fix vertical hp reversed

version 6.9.7
-- add monk to indicator table

version 6.9.6
-- update some tags
-- add monk to dispel list

version 6.9.5
-- fix pom tag

version 6.9.4
-- fix healbar error

version 6.9.3
-- more 5.0 fixes

version 6.9.1
-- update for 5.0.4 / oUF 1.6

version 6.9

-- remove talent detect for class dispels(hard code types instead)
-- option to scale raid based on number of members
-- option to invert fill direction
Optional Files (0)


Post A Reply Comment Options
Unread 09-28-12, 10:13 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 onkel
Am I the only one not seeing monks in freebgrid? I see them in the party frames of ouf_phanx though.

latest version, no errors, players just don't show up at all
You either have a conflict with another addon that I don't have or freebgrid isn't loaded. Try a fresh install and disable all other addons. It should work then and if it stops working when you enable the rest of your addon, I'll need to see a list of what you have installed.
Report comment to moderator  
Reply With Quote
Unread 09-28-12, 09:12 PM  
onkel
A Kobold Labourer

Forum posts: 1
File comments: 17
Uploads: 0
Am I the only one not seeing monks in freebgrid? I see them in the party frames of ouf_phanx though.

latest version, no errors, players just don't show up at all
Last edited by onkel : 09-28-12 at 09:13 PM.
Report comment to moderator  
Reply With Quote
Unread 09-23-12, 02:41 AM  
Ellementz
A Kobold Labourer
 
Ellementz's Avatar
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 60
Uploads: 7
Really love this addon, just what I was looking for. Much appreciated!
Report comment to moderator  
Reply With Quote
Unread 09-21-12, 02:30 AM  
muck6792
A Kobold Labourer

Forum posts: 0
File comments: 25
Uploads: 0
Originally Posted by Freebaser
Originally Posted by muck6792

Any reply on this?
Here is what I now have for the pom tag. Got busy and forgot to push an update, but I hope to work on some updates this weekend.

Code:
local pomCount = {
	[1] = 'i',
	[2] = 'h',
	[3] = 'g',
	[4] = 'f',
	[5] = 'Z',
	[6] = 'Y',
}
oUF.Tags.Methods['freebgrid:pom'] = function(u) 
    local name, _,_, c, _,_,_, fromwho = UnitAura(u, GetSpellInfo(33076))
    if name and pomCount[c] then
        if(fromwho == "player") then
            return "|cff66FFFF"..pomCount[c].."|r"
        else
            return "|cffFFCF7F"..pomCount[c].."|r"
        end
    end
end
oUF.Tags.Events['freebgrid:pom'] = "UNIT_AURA"
i tested it, it seems okay, thank you.
Report comment to moderator  
Reply With Quote
Unread 09-20-12, 07:35 AM  
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 muck6792

Any reply on this?
Here is what I now have for the pom tag. Got busy and forgot to push an update, but I hope to work on some updates this weekend.

Code:
local pomCount = {
	[1] = 'i',
	[2] = 'h',
	[3] = 'g',
	[4] = 'f',
	[5] = 'Z',
	[6] = 'Y',
}
oUF.Tags.Methods['freebgrid:pom'] = function(u) 
    local name, _,_, c, _,_,_, fromwho = UnitAura(u, GetSpellInfo(33076))
    if name and pomCount[c] then
        if(fromwho == "player") then
            return "|cff66FFFF"..pomCount[c].."|r"
        else
            return "|cffFFCF7F"..pomCount[c].."|r"
        end
    end
end
oUF.Tags.Events['freebgrid:pom'] = "UNIT_AURA"
Report comment to moderator  
Reply With Quote
Unread 09-20-12, 02:19 AM  
muck6792
A Kobold Labourer

Forum posts: 0
File comments: 25
Uploads: 0
Originally Posted by AzureSong
Code:
-- Priest
local pomCount = {"","i","h","g","f","Z"}
oUF.Tags.Methods['freebgrid:pom'] = function(u) 
    local name, _,_, c, _,_,_, fromwho = UnitAura(u, GetSpellInfo(33076))
    if name and c then
        if(fromwho == "player") then
            return "|cff66FFFF"..pomCount[c+1].."|r"
        else
            return "|cffFFCF7F"..pomCount[c+1].."|r"
        end
    end
end
oUF.Tags.Events['freebgrid:pom'] = "UNIT_AURA"
the "instant" pom heals 6times,and the count is 5,4,3,2,1,0,so we need to add 1 to count.
Any reply on this?
Report comment to moderator  
Reply With Quote
Unread 09-16-12, 07:05 PM  
AzureSong
A Kobold Labourer
 
AzureSong's Avatar

Forum posts: 0
File comments: 1
Uploads: 0
Code:
-- Priest
local pomCount = {"","i","h","g","f","Z"}
oUF.Tags.Methods['freebgrid:pom'] = function(u) 
    local name, _,_, c, _,_,_, fromwho = UnitAura(u, GetSpellInfo(33076))
    if name and c then
        if(fromwho == "player") then
            return "|cff66FFFF"..pomCount[c+1].."|r"
        else
            return "|cffFFCF7F"..pomCount[c+1].."|r"
        end
    end
end
oUF.Tags.Events['freebgrid:pom'] = "UNIT_AURA"
the "instant" pom heals 6times,and the count is 5,4,3,2,1,0,so we need to add 1 to count.
Report comment to moderator  
Reply With Quote
Unread 09-14-12, 04:35 AM  
muck6792
A Kobold Labourer

Forum posts: 0
File comments: 25
Uploads: 0
Again this error:

Code:
Message: Interface\AddOns\oUF_Freebgrid\tags.lua:118: attempt to concatenate field '?' (a nil value)
Time: 09/14/12 12:33:36
Count: 111
Stack: Interface\AddOns\oUF_Freebgrid\tags.lua:118: in function `?'
Interface\AddOns\oUF_Freebgrid\oUF\elements\tags.lua:577: in function `UpdateTag'
Interface\AddOns\oUF_Freebgrid\oUF\elements\tags.lua:425: in function <Interface\AddOns\oUF_Freebgrid\oUF\elements\tags.lua:421>

Locals: u = "party1"
name = "Gebet der Besserung"
_ = ""
_ = "Interface\Icons\Spell_Holy_PrayerOfMendingtga"
c = 0
_ = "Magic"
_ = 30
_ = 4912.882
fromwho = "player"
(*temporary) = ""
(*temporary) = nil
(*temporary) = ""
(*temporary) = "attempt to concatenate field '?' (a nil value)"
GetSpellInfo = <function> defined @Interface\AddOns\oUF_Freebgrid\tags.lua:21
pomCount = <table> {
 1 = "i"
 2 = "h"
 3 = "g"
 4 = "f"
 5 = "Z"
 6 = "Y"
}
Report comment to moderator  
Reply With Quote
Unread 09-11-12, 02:11 PM  
Djokart
A Kobold Labourer
 
Djokart's Avatar

Forum posts: 0
File comments: 51
Uploads: 0
Wrong ID for paladin's migth tag.
109773 - Dark itent
19740 - BoM
__________________
Evil is Good
Report comment to moderator  
Reply With Quote
Unread 09-11-12, 01:14 AM  
muck6792
A Kobold Labourer

Forum posts: 0
File comments: 25
Uploads: 0
Originally Posted by Freebaser
Originally Posted by muck6792
Any chance to get an update or a reply on that error?
should be fix
Cool thank you freebaser, i will try it out.
Report comment to moderator  
Reply With Quote
Unread 09-10-12, 06:31 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 muck6792
Any chance to get an update or a reply on that error?
should be fix
Report comment to moderator  
Reply With Quote
Unread 09-10-12, 04:24 AM  
muck6792
A Kobold Labourer

Forum posts: 0
File comments: 25
Uploads: 0
Any chance to get an update or a reply on that error?
Report comment to moderator  
Reply With Quote
Unread 09-08-12, 03:48 AM  
muck6792
A Kobold Labourer

Forum posts: 0
File comments: 25
Uploads: 0
Code:
Message: Interface\AddOns\oUF_Freebgrid\tags.lua:117: attempt to concatenate field '?' (a nil value)
Time: 09/08/12 11:45:43
Count: 2339
Stack: Interface\AddOns\oUF_Freebgrid\tags.lua:117: in function `?'
Interface\AddOns\oUF_Freebgrid\oUF\elements\tags.lua:577: in function `UpdateTag'
Interface\AddOns\oUF_Freebgrid\oUF\elements\tags.lua:425: in function <Interface\AddOns\oUF_Freebgrid\oUF\elements\tags.lua:421>

Locals: u = "party1"
name = "Gebet der Besserung"
_ = ""
_ = "Interface\Icons\Spell_Holy_PrayerOfMendingtga"
c = 0
_ = "Magic"
_ = 30
_ = 5032.908
fromwho = "player"
(*temporary) = ""
(*temporary) = nil
(*temporary) = ""
(*temporary) = "attempt to concatenate field '?' (a nil value)"
GetSpellInfo = <function> defined @Interface\AddOns\oUF_Freebgrid\tags.lua:21
pomCount = <table> {
 1 = "i"
 2 = "h"
 3 = "g"
 4 = "f"
 5 = "Z"
 6 = "Y"
}
Another lua error on my holy priest
Report comment to moderator  
Reply With Quote
Unread 09-07-12, 03:23 PM  
Djokart
A Kobold Labourer
 
Djokart's Avatar

Forum posts: 0
File comments: 51
Uploads: 0
Thanks, until there are no errors.
Tomorrow check in raid.
__________________
Evil is Good
Report comment to moderator  
Reply With Quote
Unread 09-07-12, 01:37 PM  
lxhlxh520
A Kobold Labourer

Forum posts: 0
File comments: 5
Uploads: 0
a bug

when the player talent changed,frames do not change as

should register this event PLAYER_SPECIALIZATION_CHANGED
not active_talent_group_changed
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: