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

macro to ninja everything from guild bank tabs

jungly

New Member
Joined
Apr 19, 2010
Messages
394
Reaction score
5
Found this on wow forum, macros to ninja everything from guild:

Put everything from your bags into guild tabs:
Code:
/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

Put everything from guild tabs into your bags
Code:
/run for t=1,GetNumGuildBankTabs() do for s=1,98 do SetCurrentGuildBankTab(t)AutoStoreGuildBankItem(t,s)end end
 
thanks for the macros!

you may want to modify the title of the post to not seem like you condone stealing stuff from guilds :)
 
Back
Top