Elkano's BuffBars
EBB provides groups of statusbar style indicators to show (de)buffs currently affecting your char or some other units (currently focus, pet and target). For the player, it can also show indicators for temporary enchants place on it's weapons.
Due to changes Blizzard made with WoW 4.x it's no longer possible to cancel buffs without the use of secure frames. Currently EBB limits canceling of buffs to out-of-fight since using SecureAuraHeader would have required a major code restructuring. This will be coming in a later version.
Version 2.x is a total recode based on the Ace2 framework which became necessary in order to support some of the longtime wanted and suggested features. It's now possible to show different groups of bars which can be configured in many ways. Each group can be assigned an individual look and filter settings. EBB can be configured via a dropdown menu which is accessible via chat (/ebb config), FuBar plugin or (for the group settings) by right clicking the groups anchor. After setting up a group, its anchor can be hidden by alt-left clicking a bar or the anchor itself in order to lock the group in place.
In order to get additional bar textures and fonts for EBB simply install SharedMedia which is available for download under http://wow.curse.com/downloads/wow-addons/details/sharedmedia.aspx
If you have bug reports or feature request, create a ticket: http://www.wowace.com/projects/elkbuffbars/create-ticket/
You can also check my thread at the WoWAce forums: http://forums.wowace.com/showthread.php?t=5290
The most recent development version of EBB is available directly from the WoWAce SVN via http://www.wowace.com/projects/elkbuffbars/files/
hidebuffframe = true,
If you change this to false:
hidebuffframe = false,
It will enable the blizzard buff ui side-by-side, the reason for wanting to do this is so at least I have some way to right-click off my buffs.
/ebb config
Just curious...and thanks for all you do to help make our gaming more fun and productive! =)
- still uses Ace2 :(
Cut 'n paste from the changelog from the 18th, took about 5 seconds to find =P
With Cataclysm, Blizzard modified the buff functions to protect them (maybe to prevent some kind of exploit used in the past). So right-clicking a buff to remove it is ONLY possible with the standard buff interface. No addon can do it anymore until Blizzard decides to modify once again the functions.
If you know the buffs you want to remove, you can still make a standard macro to cancel it/them by using cancelaura:
/cancelaura Horn of Winter
/cancelaura Name of annoying Buff
...
It was mainly meant for those using both mining and herbalism to keep track of the current one. So I removed that feature completely.
In file ElkBuffBars.lua:
I commented out the line with "local GetTrackingTexture = _G.GetTrackingTexture"
I then made a copy of the EBB "GetTrackingName", renamed the copy to "GetTrackingTexture", and replaced the line in that function "return name" to "return texture".
In "ScanData_TRACKING" (the function where the error line is), I replaced "local icon = GetTrackingTexture()" with "local icon = self:GetTrackingTexture()".
That seemed to get the tracking bar to show, but when you'd move the mouse over it, an error would pop up. With that, I did the following...
In file EBB_Bar.lua
I commented out lines 97 and 98, which were...
" elseif realtype == "TRACKING" then "
" GameTooltip:SetTracking() "
After doing all that, no tracking shows up until I activate one myself, like Find Herbs, of which it shows up with the other bars, and I can right-click it to choose from the list of things to track. If I deselect all of them, the bar will disappear. Now, I don't know if there is meant to be a "None" bar there so you can change tracking from the bar at any time, but this method I made seems to work, and no more errors.
Much Love
-Knails
thank you so much for that update :)