whenever i talk to a vendor all my bags open. how do you stop this?
you can get the addon “open default bag”, it only opens the backpack (aka 1st bag).
thanks so this is not in the game interace basically everyone that talks to a vendor has all there 30 slot bags opened in front of there face to annoy them everytime?
Don’t speak for everyone, it doesn’t bother me a bit, I just close the unnecessary bags.
If you what to see something like you are asking added to the UI, use the in-game suggestion tool, or post on General Discussion. The devs don’t frequent the support forums for player feedback.
I use the addon Adibags. There is a toggle to turn off auto opening. Some UI addosn like Tuk and Elvui also have options to turn this off.
Bagnon also has options for when your bags auto open/close.
if you just want the backpack to open then
/run local f=CreateFrame("Frame") f:RegisterEvent("MERCHANT_SHOW") f:SetScript("OnEvent", function(self) if IsAnyBagOpen() then CloseAllBags() end OpenBackpack() end)
or for no bags:
/run local f=CreateFrame("Frame") f:RegisterEvent("MERCHANT_SHOW") f:SetScript("OnEvent", function(self) if IsAnyBagOpen() then CloseAllBags() end end)
Can be turned into a small addon by removing the /run
and pasting the rest into:
https://addon.bool.no/