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
Code:
/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
/bankstack -- show configuration
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
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:
Code:
/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.
Planned Features:
Suggest something?
Change Log - BankStack
14:
Bump ye-olde-TOC
LibDBIcon included so that people without a broker display will have a minimap icon
13:
Bump ye-olde-TOC
12 (r126):
Make the default DB profile not be per-char.
Add ruRU, zhCN, deDE, koKR localizations.
11 (r119):
It's been six months... bump that TOC!
Switch it to a LDB dataobject instead of a FuBar plugin. (Use Broker2FuBar if you want to get it into FuBar.)
Fix some bugs with ignoring and groups.
10 (r79704):
Option to move soulbound items to the front.
Broke out the FuBar plugin into its own addon. (And actually embed all the FuBar libs, which means it'll reliably show up on FuBar.)
"Tiny adjustment which stops the sorter from crashing when comparing two 'unknown typed' items." --grum
Use AceDB-3.0. It's nice.
9 (r57701): Click actions on the fubar plugin are now configurable. Guild bank tabs are allowed in custom groups.
8 (r55972): Sorting junk to the back was broken by a typo; fixed.
7 (r55665): Sorting now fills stacks in profession bags if possible. General optimization.
6 (r55583):
Sorting now matches the Auction House categories.
Guild bank support is much more permissive (it's your own job to make sure you have enough withdrawals)
"Reverse sort" option
Add default groups for each guild bank tab (guild1 ... guild6)
Sorting conjured items to the back is massively sped up
FuBar plugin now works if you don't have Rock (also, icon)
Rewrote the config system, let it work with a right-click on the FuBar plugin
5 (r54956): Guild bank support, /fill, conjured items to the back.
4 (r54574): Update the TOC for 2.3.
3 (r54306): Ignores, custom groups, optimized moves.
2 (r53814): Sorting now compresses the bags first, and will sort specialty bags separately.
1: Initial
Optional Files - BankStack
Sorry, there are currently no optional files available.
Is there a way to make this sort take the items "character slot" into consideration? By this I mean, it would rock if it would sort "back" items with "back" items, "rings" with "rings", etc. This way it would help someone who wants to clean their bags identify excess or no longer useful items based on slot. It seems to just sort items you wear with every other item you wear.
I could also see this "by character slot" sort extending to include information about the item, for example it could sort rings that have "defense" on them together and rings that have "strength" together. With the dual spec we all have now, it would be nice to be able to keep items that belong to each spec together.
Originally posted by joemawma Silly question possibly: I've been using Fubar for a long time, and thought I'd experiment with Titan. Does Titan support BankStack? Again, I've got zip familiarity with Titan (been installed less than an hour), so maybe I'm overlooking something simple...
Titan says it supports Broker plugins, so BankStack should work with it. Not that I've tested this.
Silly question possibly: I've been using Fubar for a long time, and thought I'd experiment with Titan. Does Titan support BankStack? Again, I've got zip familiarity with Titan (been installed less than an hour), so maybe I'm overlooking something simple...
First thing I did, was I opened my bags, and then I did /bankstack. A new menu came up.
I looked through the menus, and found the command list on there. I did /sort, and man, as soon as I saw my entire bag move around all at once, I dump'd my pants. XD
This is an improvement. =P
*Creates macros and stuffs on action bar.*
I'd recommend this addon to those people that like their bags tidy and use an "all-in-one bag" bag mod.
i like this addons because it has the original bag frames but the sorting is weird.. it will be better if you can config the sorting inside the game like gear/mats/quest/etc .... everyone will use it if u do that
I note that 17 has gone missing. So I wanted to find out if 17 was special or something. I found this page, which while an official source, may be outdated or inaccurate as far as the table shown for inventory slot numbers: http://www.wow-europe.com/en/info/ba...de/page01.html
It lists 17 as the off-hand slot, but that's different from what we see in BankStack. If you can shed light on the inventory slot numbers, I'd appreciate it.
Sure, I can help here. Those aren't actually the inventory slot numbers -- they're just arbitrary numbers that represent the order I want those types to sort in.
That table is only used in the default_sorter function, where it does:
Code:
local a_equipLoc = inventory_slots[a_equipLoc] or -1
local b_equipLoc = inventory_slots[b_equipLoc] or -1
if a_equipLoc == b_equipLoc then
...
else
...
end
The inventory slots as returned by GetItemInfo are actually "INVTYPE_2HWEAPON", and so forth.
So! If you want to customize the sorting, all you need to do is make it so that the item_types, item_subtypes, and inventory_slots tables are stored in the DB and have a GUI for editing 'em. (I like the current approach taken by build_sort_order -- it means that no localization has to be done. I'd still want the defaults built that way.)
If you submit a patch that does that, I'll include it. Otherwise, well, it's been on my todo list since I wrote this.
I note that 17 has gone missing. So I wanted to find out if 17 was special or something. I found this page, which while an official source, may be outdated or inaccurate as far as the table shown for inventory slot numbers: http://www.wow-europe.com/en/info/ba...de/page01.html
It lists 17 as the off-hand slot, but that's different from what we see in BankStack. If you can shed light on the inventory slot numbers, I'd appreciate it.
Is there a way to have BankStack sort items from the bottom up? I use Bagnon to display my inventory and always keep the top rows clear so I can easily spot new things I pick up, any way of making it do that?
Update:
Asking before actually trying it, silly me. The Reverse function works perfectly <3 thank you for this great addon.
You have just downloaded by the author . If you like this AddOn why not consider supporting the author? This author has set up a donation account. Donations ensure that authors can continue to develop useful tools for everyone.
*Clicking the donate button above will take you to PayPal.com
*Clicking the donate button above will take you to Pledgie.com