BankStack
BankStack is the leading cause of things moving in your bags and bank.
It:
- sorts your inventory, bank, or guild bank
- fills incomplete stacks in your bank with items from your inventory
- compresses your bags by filling incomplete stacks within them
- puts a chicken in every pot, and pot in every chicken
Quick command reference:
/bankstack
: show configuration/sort
: rearrange your bags/sort bank
: rearrange your bank/stack
: fills stacks in your bank from your bags/stack bank bags
: fills stacks in your bags from your bank/stack {group1} {group2}
: fills stacks in group2 from group1/compress
: merges stacks in your bags/compress bank
: merges stacks in your bank/compress {group}
: merges stacks in group/fill
: fill empty slots in your bank from your bags/fill {group1} {group2}
: fill empty slots in group2 from group1
In the /bankstack configuration you'll find sections for "ignore" and "groups". Here's a bit of elaboration on the syntax for those parts.
You need, regrettably, to hear about bag ids first. Each bag has a number which addons use to interact with it.
Your bags are: 0, 1, 2, 3, 4 Your bank is: -1, 5, 6, 7, 8, 9, 10, 11 Your guild bank is: 51, 52, 53, 54, 55, 56, 57, 58
To ignore slot 1 of bag 0, the first slot in your backpack, go to the "ignore" panel and put "0 1" into the textfield and click "okay".
Groups are similar. Let's say that you're a herbalist, and only want to do some things to your herb bags.
You could put this into the "groups" textbox: herbs 3,4 Or this: bankherbs 10,11
You now have two custom groups, herbs and bankherbs. Presumably you keep massive herb bags in slots 3 and 4, and are making lots of money from this because you have the two most expensive bank slots as well (10 and 11).
Having created these groups you could:
/stack herbs bankherbs
Which would fill up stacks in your bank herb bags from stacks in your personal herb bags.
Predefined groups are: bank, bags, guild, all, and a few more. Click the "list" button in the groups config to see these.
Still working ;) and its gooooood :D
I have to be quitting guild bank screen in order to make it sort with /sort bank command.
yes, your bank has to be open to do a sort bank, just as your guild bank has to be open to do a sort guild.....You cannot interact with both the guildbank and the bank ingame simultaneously...
I have two toons I use mainly for auctions, one shops mats on auction house, and builds items to sell. The other gets the items in mail and lists them on auction.
Is there an addon, or way to modify the addon, to move EVERYTHING from character bags to guild bank?
This would be perfect for those times I have to deal with 300 inbound netherweave bags, that won't 'stack to bank', or 500 stacks of cloth I have to get from mail.
this would let me quickly drop 100 items from my bags to guild bank, so I could get to other mails... etc.
Currently I have to click all the stacks to throw them into guild bank.
would love to have a addon that does that as well if you find one shoot me a pm plz
check out TSM (specifically the warhousing module) Idk if you're going to be able to clear every item from your bags, but it can certainly move every single glyph out etc etc.
Bewarned however
1. you need the core TSM (tradeskill master) addon
2. it requires set up. TSM is not an out of the box addon like bankstack. You have to create groups and operations that get applied to those groups...
that said, TSM is awesome. Just be prepared to spend some time thinking about "operations". and creating groups. You'll possibly find something like the TSM groupmaker useful to create wide generic non profession related groups.
Hope that helps. (<3 bankstack but please please update so it sorts without breaking so often!)
Does anyone know what TSM is using to access items in guild banks so rapidly?
Is it only on my guild, or does it sort very very slow?
Drop in Code for config.lua
<code>
local bag_slot_pattern = "^(-?[%d]+):?(.*)$"
add = {
name = "Add", desc = "Add an ignore", type = "input", order = 2,
get = false,
set = function(info, v)
local bag, v = v:match("^(-?[%d]+):?(.*)$")
bag = tonumber(bag)
if bag and v:trim() == "" then
core.db.ignore_bags[bag] = true
core.announce(0, "bag:"..bag.." ignored.", 1, 1, 1)
else
for slot in v:gmatch("(%d+),*") do
slot = tonumber(slot)
local bagslot = core.encode_bagslot(bag, slot)
core.db.ignore[bagslot] = true
core.announce(0, "bag:"..bag.." slot:"..slot.." ignored.", 1, 1, 1)
end
end
end,
usage = "[bag]:[slot]<,[slot]><,[slot]> (see http://wowwiki.com/BagID)",
validate = function(info, v)
-- "and true or false" because returning a string counts as false
return v:match(bag_slot_pattern) and true or false
end,
},
remove = {
name = "Remove", desc = "Remove an ignore", type = "input", order = 3,
get = false,
set = function(info, v)
local bag, v = v:match("^(-?[%d]+):?(.*)$")
bag = tonumber(bag)
if bag and v:trim() == "" then
core.db.ignore_bags[bag] = nil
announce(0, "bag:"..bag.." no longer ignored.", 1, 1, 1)
else
for slot in v:gmatch("(%d+),*") do
slot = tonumber(slot)
local bagslot = core.encode_bagslot(bag, slot)
core.db.ignore[bagslot] = nil
announce(0, "bag:"..bag.." slot:"..slot.." no longer ignored.", 1, 1, 1)
end
end
end,
usage = "[bag]:[slot]<,[slot]><,[slot]> (see http://wowwiki.com/BagID)",
validate = function(info, v)
-- "and true or false" because returning a string counts as false
return v:match(bag_slot_pattern) and true or false
end,
},
</code>
Isn't it possible to implement input for the ignore list like: bag:slot1,slot2? eg. - 4:1,2,3,4
will save us a lot of time this days with the frequent game/system crashes
<code>
local v = "4:1,2,3,4,5,6"
local bag, slots = v:match("^(%d+):(.*)$")
for slot in slots:gmatch("(%d+),*") do
print("bag:"..bag.." slot:"..slot.." ignored.")
end
</code>
I am using "conservative sort" with all sliders set to 1 (right).
However sorting hardly works.
I had item tracking addons under suspicion - e.g. TSM tracker or Datastore - but even after disabling those the sorting can fail.
I have no idea what causes the sorting to fail.
Is there a way you could add in a progress indicator for the sort? I'm the most patient person in the world, as long as I know how long I have to wait (haha).
Just for further clarity: If I'm sorting my guild bank and it has, say, 65 moves to make, have a box somewhere that says how many moves are left.
Amazing addon, by the way. Thanks for making it!
This is already built in. You will need an addon that has broker support such as Titan Panel or any broker bar, but I always used Bagnon's built in broker feature for this personally since I don't like bars. It will do exactly as you described. Hope that helped.
Awesome. I had thought I'd seen a countdown somewhere in bankstack before, and I guess it was before I stopped using Titan. Thanks for the heads up!
I adore this addon and I wish so much that the guild bank sort feature would finally be fixed.
No matter what processing delay I select for guild (I've tried them all, multiple times at 1), it sorts a few peices, stops and soons gives me an error that says, "BankStack: Confusion. Stopping."
It USED to work (and how I miss it!).. but something on Blizz's side or in an update to the addon went amiss and broke it.
If I try to sort with "cautious guild" selected, the only thing it seems to change is first giving me an "Internal guild error" before giving the "BankStack: Confusion. Stopping" error.
I've tried other addons (Genie and Mr. Plow) in hopes of something similar yet none of them seem to have this exact feature which sorts across all tabs. Please fix! :(
i agree i used this addon every single day i've had it installed but the guild feature is also broke for me as the other poster stated.
i've tried every single settings to try to get this to work once again with the guild but either it work's and it's really really slow or it get's a error and stop's.
the sort bag/bank features work for me only thing is the guild feature and i miss it terribly also!
big fan of your addon and appreciate the work you put into it and hope it get's fixed!
Yea, we all miss the guild sorting feature. I'm prretty sure most of us originally found this addon to sort guild banks, however I don't think it's the author's fault for it not working anymore. Blizzard introduced changes that in terms introduced lag between the server and client. No idea why blizzard did this... I guess they needed resources else where and throttled our guild banks. Nonetheless, we do need a fix for this... a way to override the auto stop function perhaps?
Would it be possible to send a specific item type to a specific group? IE, define bag 4 as your "Cloth" bag, and then send all cloth to it on sort? Another could be a "Quest" bag, and so on.
I've set this myself by having it simply ignore my last bag and sort those items out myself, but I'd love a simpler solution.
Internally it's already doing something similar to that. The only problem is that it's not actually exposed to you through some sort of helpful UI.
In fact, to demonstrate the general easiness of it: https://gist.github.com/kemayo/5939099
If you caused that bit of lua to run, you'd have a new slashcommand `/movecloth` which would work like `/movecloth 0,1,2,3 4` to move all cloth from bags 0,1,2,3 to bag 4.