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

Addon to move items to/from bank by name.

Man...these macros are a life saver =D

No more hand withdrawals :D
 
Yeah, they are saving me alot of time that is for certain :)
 
need help with this how to modify that WITHDRAW ALL Saronite Ore FROM GUILD BANK i mine from all TAB-s

WITHDRAW ALL FROM GUILD BANK (SPECIFIED ITEM)
/run for t=1,GetNumGuildBankTabs()do for s=1,98 do local l=GetGuildBankItemLink(t,s)if l and strfind(l,"YOURITEM")then SetCurrentGuildBankTab(t)_G[format("GuildBankColumn%dButton%d", ceil(s/14),s%14)]:Click("RightButton")end end end

Ty
 
Which ones are not working? This thread is such a time saver. For last few months ive literally had to take a day off from botting and do nothing but sort all the crap ive gotten over the week its that bad. Now I can do the same thing in a few clicks. Wow...

Anyone have an update on this macro"WITHDRAW ALL FROM GUILD BANK (GREENS)" "DEPOSIT/TRADE/MAIL ALL ITEMS (GREENS)" ? ?
Other ones working great but that one would be absolutely awesome if it did work..
 
Hi guys,

Great macros. I'm using a few of them and they are working fine.

The withdraw macro, though, only withdraws 10-12 stacks from my bank at a time? Is this because i'm not using guild bank? The deposit macro seems to work fine.

Any help would be awesome. Thanks
 
Withdraw:
/script for bag = 5, 11 do for slot = 1, GetContainerNumSlots(bag) do local name = GetContainerItemLink(bag,slot) if name and string.find(name,"Pigment") then DEFAULT_CHAT_FRAME:AddMessage("Get"..name) UseContainerItem(bag,slot) end end end

I don't know how to include the original bank space (-1, the space in bank you have even if you have no bags). But those work OKish for what i need. I can post one that works for gbank too if anyone needs it.

Sorry to bump such an old thread but I am atm looking into such macros, is anyone able to make one like this but with the origrinal bagspace included?
 
i found this on mmowned forums posted way back in september:

[Macro] Withdraw All from Guild Bank

WITHDRAW ALL FROM GUILD BANK (SPECIFIED ITEM)
/run for t=1,GetNumGuildBankTabs()do for s=1,98 do local l=GetGuildBankItemLink(t,s)if l and strfind(l,"YOURITEM")then SetCurrentGuildBankTab(t)_G[format("GuildBankColumn%dButton%d", ceil(s/14),s%14)]:Click("RightButton")end end end

WITHDRAW ALL FROM GUILD BANK (GREENS)
/run for t=1,GetNumGuildBankTabs()do for s=1,98 do local l=GetGuildBankItemLink(t,s)if l and strfind(l,"cff1eff00")then SetCurrentGuildBankTab(t)_G[format("GuildBankColumn%dButton%d", ceil(s/14),s%14)]:Click("RightButton")end end end

DEPOSIT/TRADE/MAIL ALL ITEMS (SPECIFIED)
/run for b=0,4 do for s=0,22 do l=GetContainerItemLink(b,s) if l and l:find("YOURITEM")then UseContainerItem(b,s) end end end

DEPOSIT/TRADE/MAIL ALL ITEMS (GREENS)
/run for bag=0,4 do for slot=1,GetContainerNumSlots(bag) do local texture,itemCount,locked,quality=GetContainerItemInfo(bag,slot) if quality==2 then UseContainerItem(bag,slot) end end end

anyone still uses them? do they work for you? because it only moves a few items at once, so i have to use the macro several times until everything is deposited into guild vault. i remember it worked earlier (before last patch?)
 
Anyone knows if theres meanwhile an addon for this issue?
 
Back
Top