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

[REQUEST] Profile that takes everything in mailbox & puts it in Gbank

facedark

Member
Joined
Jul 8, 2010
Messages
378
Reaction score
2
Hey, I have searched through these forums and have yet to find a profile that simply withdraws everything in mailbox and deposit it in gbank - maybe this is very easy to do but I'm not sure how to do it! Some tips if it's easy?
 
mass mail macro will take 12 items from inventory and pit it in the mail all you need 2 do is write player name and press send.
mass mail macro:

/run for bag=0,4,1 do for slot=1,GetContainerNumSlots(bag),1 do local name=GetContainerItemLink(bag,slot) if name and string.find(name,"") then DEFAULT_CHAT_FRAME:AddMessage("- Selling "..name) UseContainerItem(bag,slot) end end end

takes all items in you bag and puts it in gbank.
mass in gbank macro:

/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

takes out all items in gbank.
mass ninja gbank macro:

/run for t=1,GetNumGuildBankTabs() do for s=1,98 do SetCurrentGuildBankTab(t)AutoStoreGuildBankItem(t,s)end end

hope thise macros help :P
 
Professionbuddy already has these functions built in. Just have to make a profile with it. It is really simple. Read the guide that comes with Professionbuddy. It teaches you how to use the ACTION tab and all you do is drag the action to the right side of the screen.
 
Back
Top