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

Fill/Empty bag/bank macro?

Malice211

Member
Joined
Aug 4, 2010
Messages
388
Reaction score
4
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