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

Guild bank easy withdraw/deposit addon or macro

staniwka

New Member
Joined
Aug 17, 2010
Messages
75
Reaction score
0
Anybody got a working addon or macro to withdraw/deposit goods from and to guild bank
Since last days my macro stopped working properly and it only deposit/withdraw limited amount of items for some reason. After 1 click it seems a bit uncomfortable for me to click that macro too many times, and sometimes even d/c
I would really appreciate if you could help me
 
addon: gBanker : Bags, Bank, Inventory : World of Warcraft AddOns
Macros:
deposit
PHP:
/run for b=0,4 do for s=1,GetContainerNumSlots(b)do local n=GetContainerItemLink(b,s)if n and strfind(n,"Glyph")then print("Depositing "..n)UseContainerItem(b,s)end end end
Withdrawing from Bank bags:
PHP:
/run for b=5,11 do for s=1,GetContainerNumSlots(b)do local n=GetContainerItemLink(b,s)if n and strfind(n,"Glyph")then print("Withdrawing "..n)UseContainerItem(b,s)end end end
Withdraw from All Guild Bank Tabs:
PHP:
/run for b=1,GetNumGuildBankTabs()for s=1,98 do local n=GetGuildBankItemLink(b,s)if n and strfind(n,"Glyph")then print("Withdrawing "..n)AutoStoreGuildBankItem(b,s)end end
Withdrawing from Main Bank Window:
PHP:
/run for s=1,28 do n=GetContainerItemLink(BANK_CONTAINER,s)if n and strfind(n,"Glyph")then print("Withdrawing "..n)UseContainerItem(BANK_CONTAINER,s)end end

These Macros only withdraw / deposit Glyphs but u can easily change it to withdraw / deposit everything

Deposit everything into all GuildBank tabs:

PHP:
/run for t = 1,GetNumGuildBankTabs() do for b = 0, 4 do for s = 1, GetContainerNumSlots(b) do SetCurrentGuildBankTab(t)UseContainerItem(b,s) end end end


Withdraw everything from all GuildBank tabs:

PHP:
/run for t=1,GetNumGuildBankTabs() do for s=1,98 do SetCurrentGuildBankTab(t)AutoStoreGuildBankItem(t,s)end end
 
Last edited:
ty for your reply
gbanker seems dosent work for me at all, i tried everything to make it work and it just dosent

i am only interested in withdraw all/deposit all macros
since last week or days blizzard fixed something and for some reason it only deposit/withdraw not everything but limited amount of items

i use a bit different macro than you, cause your withdraw all/deposit all macros make me disconnect sometimes
deposit all
/run for b = 0, 4 do for s = 1, GetContainerNumSlots(b) do if MerchantFrame:IsShown() then break end UseContainerItem(b, s) end end
withdraw all
/run for i = 1, 98 do if MainMenuBarBackpackButton.freeSlots == 0 then break end AutoStoreGuildBankItem(GetCurrentGuildBankTab(), i) end

but the problem is your and my macros work weird right now, i tried to use your macro it works much better but still skip tab1 and last tab filling for some reason, when i repeat that macro it only deposits like 6 items same problem with my macro that worked perfectly week ago
 
Are these macros still working or does anybody know an addon, which i can use in order to drop and withdraw multiple same herbs or ores to or from the guildbank ?
 
Back
Top