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.
Is there a way to use a macro to throw in modifiers so I can press specific key combos for certain chars?
What I'm looking to do exactly is without any modifiers pressed, the macro will open bank+bank bags ("/bi allbank") of my current char I'm, logged onto, but with modifier SHIFT pressed, it will open Char1's bank+bankbags+equipped bags ("/bi Char1" with BankItems options set to open BankItems, bank bags, and invt. bag), then modifier CTRL same as shift except Char2, etc thru more chars.
Thank you.
Try this:
/run SlashCmdList["BANKITEMS"](SecureCmdOptionParse("[mod:Shift] Char1; [mod:Ctrl] Char2; allbank"))
The toolstip didn't show "void storage : X" when I see a item that I savd in void storage. It still show " bank:X"
I find some code that didn't add in lua.
The function call : function BankItems_Generate_SelfItemCache()
It's didn't add bagnum 104 for void storage.
The cod maybe like this
elseif bagNum == 104 then data[temp].voidstorage = (data[temp].voidstorage or 0) + (theBag[bagItem].count or 1)
I try to add those code in lua. Now , It can current show the "voidstorage:X" in tooltip.
Sorry for my bad Enlish.
Where is the update to 5.1???? pls
The Search option not work since void storage was included in the addon
Date: 2013-01-05 13:12:40
ID: 1
Error occured in: Global
Count: 1
Message: ..\AddOns\BankItems\BankItems.lua line 3766:
invalid option in `format'
Debug:
[C]: format()
BankItems\BankItems.lua:3766: BankItems_Search()
BankItems\BankItems.lua:5339:
BankItems\BankItems.lua:5335
Locals:
(*temporary) = "Bolsa % Objeto %"
(*temporary) = 0
(*temporary) = 1
Will this be updated?
=(
please update
update update!!! =D
please add in addon save items http://www.wowhead.com/npc=54443
How about using new event BAG_UPDATE_DELAYED ? It has no arg1 but it fires once.
if BAG_UPDATE then save arg1 in bagsToUpdate elseif BAG_UPDATE_DELAYED then scan bagsToUpdate clear bagsToUpdate end
Please, update ,thx~
everyone are waiting~
None of the pets that i have used before and put in cages are showing up in bank items. I know there have been problems with these in auctioneer not showing up either. If they've never been used they show up fine. I'm technologically illeterate so i may have missed something said earlier.
How on earth do you use this mod to view your Void Storage? The description says you can, but I can't figure it out for the life of me.
It's in one of the 4 buttons (all 4 are in 1 square on the bottom left row) when you open up BankItem.
Is there anyway to use this to link the guild bank contents to forums?
Is it possible to change the Export-Output like this and to save it directly in a textfile or even direct upload to an ftp server:
12345 - I am an Item
I need the Item ID for further working with the Export of our Guild Bank.
Greetings
Hi,
as of the latest update, slot contents in all "bags" that aren't the main bank space seem to be reversed compared to the icon and tooltip for the item. For example, slot 1 of a given bags show the icon and tooltip of item A. However if I link it, or try it on in the dressing room, it uses item B, which is in the last slot in the same bag. Similarly, the last slot shows item B, but links item A. Item in slot 2 shows item C but links the item found in slot [numslots - 1], etc.
Open up BankItems.lua and go to line 882:
local itemID = bankPlayer[format("Bag%d", bagID)].size - ( self:GetID() - 1 )
change it into:
local itemID = self:GetID()
Fixed. Thank you.