BankItems
#BankItems v9.0.2.3: Change Log
Feb 12, 2021 (r286)
For use with Live Servers v9.0.2.37474
Latest Development Build: 9.0.2.3 Feb 12, 2021 (r286)
Please report any errors with the addon at our issues tracker.
An addon that remembers the contents of your bank, bags, mail, equipped, currency, auction house, void storage and display them anywhere in the world. Also able to remember/display the banks of any character on the same account on any server, as well as searching and exporting lists of bag/bank items out. It will also remember the contents of Guild Banks if you are able to view them.
Type /bi or /bankitems to see what is currently in your bank. You must visit your bank once to initialize.
Type /bigb or /bankitemsgb to see what is currently in your guild bank. You must visit your guild bank once to initialize. Note that Guild Banks are a shared repository and changes can occur to it by other members of your guild.
Read below for other commands.
- CurseForge: https://www.curseforge.com/wow/addons/bank-items
- Project site: https://www.wowace.com/projects/bank-items
##Plugins
These plugins allow clicking on the panel/plugin icon to open BankItems, giving a summarized view of inventory slots and money of each character on the same realm, and deleting data with the menu quickly.
- LDB plugin for BankItems: BankItems provides a LDB launcher if LibDataBroker-1.1 is detected to be loaded. (built-in)
##Commands
- /bi : open BankItems
- /bi all : open BankItems and all bags
- /bi allbank: open BankItems and all bank bags only
- /bi clear : clear currently selected player's info
- /bi clearall : clear all players' info
- /bi showbuttun : show the minimap button
- /bi hidebutton : hide the minimap button
- /bi open charname : open bank of charname on the same server
- /bi charname : open bank of charname on the same server
- /bi search itemname : search for items
- /bis itemname : search for items
- /bigb : open BankItems guild bank
- /bi clear : clear currently selected player's info
- /bigb clear : clear currently selected guild's info
Most options are found in the GUI options panel.
Not a bug
If you close your bank after retrieving/storing an item in it too quickly and the server hasn't updated your inventory, BankItems is unable to record the change to your bank when the item actually moves later. The WoW API does not give you any data about your bank once BANK_FRAME_CLOSED
event has fired.
Tooltip information regarding items on the Auction House, Mailbox and Guild Bank(s) may be out of date and thus be inaccurate. They will only be updated on your next visit to the respective places.
##Credits
Original concept from Merphle
Maintained by JASlaughter, Galmok@Stormrage-EU, and Xinhuan@Blackrock/Barthilas/Frostmourne-US.
For me to :/
I don't see 4-5-6-7 bag in my bank, and i don't see a new page
Good i see my bag 4-5-6-7, but i don't found the new page
Almost there... but it doesn't find the new items until you logout/login again, and the counts are always 1, no matter how big the stack really is.
According to the project site webpage, this project is no longer active, Can anyone recommend a good replacement with similar features and UI?
The project page may be incorrect. Since there haven't been a whole lot of changes to the UI in the last year+ quite a few of the addons around are showing that they are inactive. That being said, I'm working to get a version of this updated with the existing features along with reagent bank support. I can't say how long it will take however as this is my first attempt at really jumping head first into someone elses addon..
When will we get an 6.0 Update?
This addon right now causes LUA error...
i hope this gets updated for the 2nd void storage tab and the reagent bank. I just need a mod to see what is on alts and this mod was perfect.
Yeah, definitely needs to be updated - it's a great simple addon!
Been using it for years 'cause it's so easy to use and you can quickly see what alts have in bags, bank, void...
Of all the addons I want updated for patch 6.0, this is my number one choice! Would love to see it include the reagent storage slot. I'd programmer myself if I knew how.
This worked for the second void storage tab for me. The remaining issues I have now are:
1) Only the first 3 out of 7 bag slots work in the bank.
2) The new reagent storage tab in the bank is not supported.
These two are probably related (likely bag ids got shuffled around to add the new materials storage). If I had enough time I'd dig into the code to try to fix this myself.
(Edit: To be specific, shadowtreedruid's suggested code at least allows the tooltip indicators to work for both void storage tabs. Most likely the /bi viisual storage interface still doesn't support the second tab with only these changes, though I can't log in right now to check.)
As a work around for the 6.0 patch open the BankItems.lua file (make a backup copy first) and make changes to make it look similar to (changes begin on line 2915):
http://pastebin.com/FJJM8Gik
Didn't work.
The visual interface for the void storage also works with the 2nd tab since the void storage is just visualized as a bunch of smaller bags with a paging button.
I will see if I can't fix the missing bags. The reagent bank will probably be a bit harder to deal with however..
Can someone please share a version with the void storage and other fixes implemented?
I have recently left a guild and am trying to remove that guild's info from my bankitems. I used /bigb clear while I had the guild bank open. It cleared the guild name from the options but, when I search for an item it still shows the guild banks item. Hard to explain... I hope you understand. What do I need to do so that I no longer retrieve the guild banks count when looking up an item?
Any chance cross-realm support for bind on account items will be implemented?
You can currently remove a deleted characters info by choosing their name in the dropdown at the bottom of the BankItems window and then doing /bi clear
If you delete character it's data will remain in database.
Because you cannot log in to that character anymore to get rid off that toon's info without wiping whole database add slash command like
/bi clear charactername.
It will wipe data of charactername from current realm.
Below is fragment of code to put inside function BankItems_SlashHandler():
elseif strfind(msg, "clear (.*)") then
local selfPlayerRealm = strtrim(GetRealmName())
local p1, p2 = strmatch(msg, "clear (.)(.*)")
if not p1 or not p2 then return end -- names are at least 2 chars long
local playerName = strupper(p1)..p2.."|"..selfPlayerRealm
for key, value in pairs(BankItems_Save) do
if type(value) == "table" and key == playerName then
BankItems_DelPlayer(key)
end
end
return
Place above code before elseif msg == "clearall" then line.
Also you can add
BankItems_Chat(L["-- /bi clear character : clear character's info"])
in same function.
Just noticed that relog is required to remove cleared character data from tooltips. Anyway better that than nothing. Regards.