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