How to stop all bags from opening

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).

https://www.curseforge.com/wow/addons/opendefaultbag

2 Likes

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?

1 Like

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.

2 Likes

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.

2 Likes

Bagnon also has options for when your bags auto open/close.

2 Likes

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/

4 Likes