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!

Fill/Empty bag/bank macro?

Malice211

Member
Joined
Aug 4, 2010
Messages
388
Anyone know a good macro to empty your guild bank to your bags and vice versa? I was using the macros below but for some reason they arn't working as well for the past several weeks. Where once they would fill/empty all your bags with one push now they only work for 7 or 8 items at a time.

From bank to bags

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

From Bags to bank

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


Thanks
 
Seems like blizzard put some limit on depositing/withdrawing items to and from gbank, mine neither work.

Looks like it's random number with each, but spamming button few times works for full at once.

EDIT: spamming too fast gets you disconnected ^^
 
Last edited:
Back
Top