Wanted to share my macros I use for guild bank deposit.
Use those macros only when guild bank is open.
Green tea leaf:
/run for b=0,4 do for s=1,GetContainerNumSlots(b)do local n=GetContainerItemLink(b,s)if n and strfind(n,"Green Tea Leaf")then print("Depositing "..n)UseContainerItem(b,s)end end end
Rain poppy:
/run for b=0,4 do for s=1,GetContainerNumSlots(b)do local n=GetContainerItemLink(b,s)if n and strfind(n,"Rain Poppy")then print("Depositing "..n)UseContainerItem(b,s)end end end
Silkweed:
/run for b=0,4 do for s=1,GetContainerNumSlots(b)do local n=GetContainerItemLink(b,s)if n and strfind(n,"Silkweed")then print("Depositing "..n)UseContainerItem(b,s)end end end
Snow Lily:
/run for b=0,4 do for s=1,GetContainerNumSlots(b)do local n=GetContainerItemLink(b,s)if n and strfind(n,"Snow Lily")then print("Depositing "..n)UseContainerItem(b,s)end end end
Use those macros only when guild bank is open.
Green tea leaf:
/run for b=0,4 do for s=1,GetContainerNumSlots(b)do local n=GetContainerItemLink(b,s)if n and strfind(n,"Green Tea Leaf")then print("Depositing "..n)UseContainerItem(b,s)end end end
Rain poppy:
/run for b=0,4 do for s=1,GetContainerNumSlots(b)do local n=GetContainerItemLink(b,s)if n and strfind(n,"Rain Poppy")then print("Depositing "..n)UseContainerItem(b,s)end end end
Silkweed:
/run for b=0,4 do for s=1,GetContainerNumSlots(b)do local n=GetContainerItemLink(b,s)if n and strfind(n,"Silkweed")then print("Depositing "..n)UseContainerItem(b,s)end end end
Snow Lily:
/run for b=0,4 do for s=1,GetContainerNumSlots(b)do local n=GetContainerItemLink(b,s)if n and strfind(n,"Snow Lily")then print("Depositing "..n)UseContainerItem(b,s)end end end