Bartender4
Bartender4 is a full ActionBar replacement mod. It provides you with all the features needed to fully customization most aspects of your action and related bars.
Major Changes since Dragonflight / 10.0
- Hold-to-cast is not currently available for addons
- Action Bars have been slightly re-arranged in Bartender4 for Dragonflight and beyond
- Bar 1-8 now reflect Blizzard Bars 1-8 (these are old 1, 3-6, and the 3 new bars)
- The old bars 7-10 are now called "Class Bar 1-4" (Shapeshifting, Stances, etc)
- The old bar 2 is now called Bonus Action Bar
Features
- Support for all Action Bars and all related bars
- 10 Action Bars (13 in Dragonflight & War Within!)
- Stance Bar
- Pet Bar
- Bag Bar
- Micro Menu
- XP/Reputation Bar
- All Bars are fully customizable (Scale, Alpha, Fade-Out settings, ...)
- Very flexible and customizable Show/Hide driver based on Macro Conditions
- Additional Layout and Paging settings for Action Bars
- Page all bars based on Stance or Modifier
- Possess Bar support
- Custom State driver support with Macro Conditions
- Options to hide specific elements of the buttons (Macro Text, HotKey, more could be added on demand)
- StickyFrames support
- Masque/ButtonFacade support!
- Easy Hotkey Binding using KeyBound
- Options to control the hiding of the default blizzard artwork (you might still want that to be displayed..)
FAQ
Q: I cannot move/drag my skills on my bars?
A: Hold Shift to move skills safely. You can also unlock your bars in the Bartender4 options, but using Shift is safer and recommended.
Q: How do i access the Configuration?
A: You can open the configuration with the Slash Commands (/bt or /bartender) or through the Bartender4 LDB plugin.
Q: Where are my keybindings? And how do i bind new keys?
A: Bartender4 buttons should automatically inherit keybindings from the Blizzard bars. For new keybindings, you can use KeyBound to re-bind your keys. You can access KeyBound by its slash command (/kb) or through the button in the BT4 config. Hover a button, press key → voila!
Q: Can I skin the buttons beyond the built-in options?
A: Bartender4 allows skinning through Masque! After installing both Bartender4 and Masque, you can customize the BT4 appearance in the Masque options.
Q: How do i disable the snapping of the bars?
A: Currently, you can temporarily override the snapping by holding down the Shift Key while moving your bars, or uncheck the option in the popup when your bars are unlocked.
Feature Requests/Bug Tracker
Please submit Bugs and/or Feature Requests using the Ticket System on the WoWAce Project page or in the Bartender4 Forum Thread. Please provide as many information as possible, including your client language, the exact version you are running, how to reproduce any errors, and a stack trace, if applicable.
Links
WoWAce Project: Bartender4 on WoWAce
Custom State Header: Info page on WoWAce
-
View User Profile
-
Send Message
Posted Apr 1, 2023Hello, I play WoW on 2 computers. I created the configuration on the PC, then copied the complete WoW installation directory to the notebook and replaced the existing one. This has always worked great. Now I have created new profiles in Bartender and they are gone after copying. Does anyone have an idea why? Is there perhaps another directory with data? Thank you for your support.
.
Now it works. It was a copy problem!
-
View User Profile
-
Send Message
Posted Mar 12, 2023One thing I've noticed is that, the xp bar and rep bar cannot be moved, and when I turn off bartender 4, the XP bar can be moved using edit mode. Also, even when you unlock bartender 4, teh xp bars and rep bars aren't even green. Anyone else seeing this issue? How do we fix it?
-
View User Profile
-
Send Message
Posted Feb 28, 2023Anyone having issues with the Bag Bar not doing anything and the bag icon simply staying wherever it wants?
-
View User Profile
-
Send Message
Posted Mar 4, 2023In reply to nonstoppjoliver:
that and the micro menu. would like a pet bar thing too, edit mode is weird with bt4 rn
-
View User Profile
-
Send Message
Posted Apr 1, 2023In reply to nonstoppjoliver:
Yeah. For me the bag bar doesn't show up usually whether enabled or not. When it does, it's in some spot unrelated to where the moveable bar says it should be.
-
View User Profile
-
Send Message
Posted Feb 21, 2023i love and appreciate the work, but you have had this micro menu bar disappearing in the last 2 versions that have been released with people sending complaints left and right.
anybody reading this having issues with the micro bar (in wotlk classic), just go download an older version. they still work just fine. im on 3 releases back and have no issues. just turn off your auto updating etc for addons.
-
View User Profile
-
Send Message
Posted Feb 27, 2023In reply to Bloodson22:
Yes been having the same issue for a while now! ill be going back to the last 2 versions as well
-
View User Profile
-
Send Message
Posted Feb 27, 2023In reply to Bloodson22:
Yes been having the same issue for a while now! ill be going back to the last 2 versions as well
-
View User Profile
-
Send Message
Posted Mar 14, 2023In reply to AppleJaxZzZ:
Yup, would love an update for the micro bar bug. Also, it's just a minor cosmetic thing, but the arrows and number for changing the main bar have never been visible.
-
View User Profile
-
Send Message
Posted Mar 18, 2023In reply to Bloodson22:
It would be nice if this was updated.. both myself and 2 others I talk to use this add on. Anytime you get on a quest where you mount (such as argent tourney or the one one in Icecrown where you ride the drake to burn buildings, etc) your bar disappears for the main menu and you need to keep doing a /reload ui to bring them back.
-
View User Profile
-
Send Message
Posted Feb 19, 2023Hello, thank you very much for this awesome mod !
There seem to be a small problem though : when you send a support ticket to Blizzard, the tiny frame telling you a ticket is pending, is bound to the micro menu. On my current UI (classic UI) it overlaps the action bar above the micro menu. Would it be possible to move the Blizzard support button elsewhere, or even as an independant Bartender frame ? Thanks !
-
View User Profile
-
Send Message
Posted Feb 15, 2023Here is a dirty workaround for the micro menu bug in wotlk: local frame = CreateFrame("FRAME", "BT4MicroMenuFixer"); frame:RegisterEvent("VEHICLE_UPDATE"); local function eventHandler(self, event, ...) C_Timer.After(2.0, function() ---...after 2 sec MicroMenuMod:Disable() MicroMenuMod:Enable() end) end frame:SetScript("OnEvent", eventHandler); Add it in "MicroMenu.lua" somewhere in "function MicroMenuMod:OnInitialize()". (Line 56) It will enable and disable the micro menu 2 seconds after exiting a vehicle, which will restore the menu. Full MicroMenuMod:OnInitialize() function: function MicroMenuMod:OnInitialize() self.db = Bartender4.db:RegisterNamespace("MicroMenu", defaults) self:SetEnabledState(self.db.profile.enabled) local frame = CreateFrame("FRAME", "BT4MicroMenuFixer"); frame:RegisterEvent("VEHICLE_UPDATE"); local function eventHandler(self, event, ...) C_Timer.After(2.0, function() ---...after 2 sec MicroMenuMod:Disable() MicroMenuMod:Enable() end) end frame:SetScript("OnEvent", eventHandler); end-
View User Profile
-
Send Message
Posted Mar 9, 2023In reply to roar1337:
Thanks Roar. Nice that I don't have to manually auto-reenable the micro menu each time.
-
View User Profile
-
Send Message
Posted Feb 14, 2023Micro Menu Bug after last update
Every time I hide the interface (Alt+Z) or after loading (BG or ARENA) the micro menu bar just disappears(). You have to use /reload to make it come back or click the enable/disable checkbox in the addon itself every time. This only started after the last update. Help! WoTLK!
-
View User Profile
-
Send Message
Posted Feb 15, 2023In reply to pizzahunter2009:
Micro Menu Bar is STILL broken after vehicle/BGs/Arena/ETC. Is this Addon Maintained or should I switch to a different one?
-
View User Profile
-
Send Message
Posted Feb 15, 2023In reply to pizzahunter2009:
Micro Menu Bar is STILL broken after vehicle/BGs/Arena/ETC. Is this Addon Maintained or should I switch to a different one?
-
View User Profile
-
Send Message
Posted Feb 15, 2023In reply to pizzahunter2009:
Micro Menu Bar is STILL broken after vehicle/BGs/Arena/ETC. Is this Addon Maintained or should I switch to a different one?
-
View User Profile
-
Send Message
Posted Feb 15, 2023In reply to pizzahunter2009:
Micro Menu Bar is STILL broken after vehicle/BGs/Arena/ETC. Is this Addon Maintained or should I switch to a different one?
-
View User Profile
-
Send Message
Posted Feb 15, 2023In reply to pizzahunter2009:
OOPS Sorry for the spam, Curse says ERROR when I try to post but I guess replies still work even with an error message.
-
View User Profile
-
Send Message
Posted Feb 4, 2023I found the "You've obtained a reagent bag" tutorial is still happening. (4.14.7)
AdiBags fixed it by setting this CVarBitfield
C_CVar.SetCVarBitfield("closedInfoFrames", LE_FRAME_TUTORIAL_EQUIP_REAGENT_BAG, true)
I applied the same CVar and it went away on ReloadUI