This project is inactive and its default file will likely not work with the most recent version of World of Warcraft. The author may have abandoned it, or it may have outlived its usefulness.
opens/closes all bags when at merchant (instead of only the backpack)
4.1 breaks this completely; there is no way to get OpenBag() to also handle the bank bags now. I replaced the event handler code in my local b_a_m copy with the following, to close any open bags and then reopen them all in the right order. Curse probably screws up the formatting and indentation.
if events_showbags[event] or events_closebags[event] then ContainerFrame1.backpackWasOpen = nil CloseAllBags() if events_showbags[event] then OpenBackpack() for i=1, NUM_CONTAINER_FRAMES do OpenBag(i) end end end
I have been using this add-on since forever, and I just wanted to say that I couldn't live without it. On patch-day with all add-ons disabled it is always the first one I miss. Thank you so much! :)
haven't updated thatone for a while so most likely you had pushed the TOC version yourself for 2.x
I think I'll look into it for 3.x once again, after I'm used to the new wowace.
Rollback Post to RevisionRollBack
To post a comment, please login or register a new account.
It seems like the same functions is included in https://www.curseforge.com/wow/addons/broker_bagfu
if events_showbags[event] or events_closebags[event] then
ContainerFrame1.backpackWasOpen = nil
CloseAllBags()
if events_showbags[event] then
OpenBackpack()
for i=1, NUM_CONTAINER_FRAMES do
OpenBag(i)
end
end
end
Thank you so much! :)
I think I'll look into it for 3.x once again, after I'm used to the new wowace.