What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Updated Mass Withdrawal Macro

Graham31004

Member
Joined
Mar 11, 2011
Messages
199
The one on Kick's blog does not work for me. Does anyone have a macro that will mass withdraw?
 
There is an excellent addon on curse called dumpster. It allows you to set up commands to easily dump mass amounts of things into and out of your guild bank. I use it daily.

Here is a link.
 
/run for i = 1, 98 do if MainMenuBarBackpackButton.freeSlots == 0 then break end AutoStoreGuildBankItem(GetCurrentGuildBankTab(), i) end

deposit:

/run for b = 0, 4 do for s = 1, GetContainerNumSlots(b) do if MerchantFrame:IsShown() then break end UseContainerItem(b, s) end end
 
Back
Top