Hello together,
here i wanna show you how to make your botting life easier with a simple addon and a few macros.
Allright, lets start!
1. If you use gatherbuddy you have to put your mount or mount macro on bar 3 + slot 1.
Most people use this macro to compress eternals:
Code:
#showtooltip MOUNTNAME
/use Crystallized Shadow
/use Crystallized Fire
/use Crystallized Water
/use Crystallized Life
/use Crystallized Earth
/use Crystallized Air
/script UIErrorsFrame:Clear()
/cast MOUNTNAME
After browsing a bit i found the addon "bankstack" which you can download here.
This addon can rearrange and compress all your items in a few sec.
Download it and put it into your addon folder. Ingame just add these two red lines to your mount macro:
Code:
#showtooltip MOUNTNAME
/use Crystallized Shadow
/use Crystallized Fire
/use Crystallized Water
/use Crystallized Life
/use Crystallized Earth
/use Crystallized Air
/script UIErrorsFrame:Clear()
/cast MOUNTNAME
/sort
/compress
Everytime the bot mounts or dismounts with the new macro the addon will rearrange and merge stacks in your bag
2. If you use the gatherbuddy's guild vault feature you know how hard it is to take out every single stack by hand everytime again.
Here i also found a little solution in form of a macro:
This will clear tab 6:
Code:
/run local t=6 for s=1,98 do local l=GetGuildBankItemLink(t,s)if l and strfind(l,"")then SetCurrentGuildBankTab(t)AutoStoreGuildBankItem(t,s)end end
This will clear tab 3:
Code:
/run local t=3 for s=1,98 do local l=GetGuildBankItemLink(t,s)if l and strfind(l,"")then SetCurrentGuildBankTab(t)AutoStoreGuildBankItem(t,s)end end
How to use:
Open the guild vault tab where you want to withdraw items and press the macro.
t allways have to be the number of the open tab.
For the crystallized things which are in my vault i use the following macro to merge them:
Code:
/use Crystallized Shadow
/use Crystallized Fire
/use Crystallized Water
/use Crystallized Life
/use Crystallized Earth
/use Crystallized Air
/sort
/compress