Download
(65Kb)
Download
Updated: 03-03-11 08:03 PM
Pictures
File Info
Updated:03-03-11 08:03 PM
Created:07-28-10 10:43 PM
Downloads:3,638
Favorites:14
MD5:

Automated Cross Realm Inventory Tracker

Version: 2.1.0
by: adinhb [More]

Current Features
Scan:

  • Equipped
  • Bags
  • Bank
  • Keyring
  • Mail
Filter by:
  • Realm
  • Faction
  • Character / Guild
  • Location (bags, etc)
  • Quality
  • Item Class
  • Item Subclass
  • Equipment Slot (work in porgress)
  • <Keyword>
Reset button resets the Locations, Quality, Item Class, Item Subclass, and Equipment Slot filters.

Displays Character / Guild gold.
Display total gold if "All" characters are selected.

Displays available bag and bank space for each character / guild.

Check Mail Status for characters in each realm / faction.
Hint, set faction to "All", and you need to only cycle through the realms menu to check all of your character's mail expirations.

Mail Expirations for current realm / faction reported at login.

Vendor trash automatically sold when visiting a merchant.

Armor repaired automtically when visiting a merchant that can repair.

Tooltips list locations and amounts of items for the active character, and the amounts other characters on the current realm / faction possess.

Memory foot print has been significantly reduced.

Right Click To Withdraw: When the inventory browser is open, and your bank / mailbox / guild bank is open, you may right click on an item in the inventory browser, and the item will be placed in your bags. In the case of the bank or guild bank, the first item / stack found is what will be withdrawn. In the case of the mail, the oldest item will be withdrawn.

Not yet implemented
  • Extended trash list
  • Merchant resupply
  • Bank / Mail resupply

2.1.0
Right Click To Withdraw enabled.

2.0.1
Tooltips now use the built in hooking feature instead of the old style (manual) function hooking.

2.0.0
Heavy rewrite.

1.1.6
Marked as compatible with WoW 4.0
Currencies not being tracked for the time being
The main window is now treated as a single graphics element, thus eliminating severl ui issues
Built in support for LDB

New Features 1.1.5
Refactored a fair bit of underlying code
Tooltips now has its own options panel, including an ignore list
By default, hearthstones are in the ignore list
Currencies with a zero count are no longer displayed
The Mail Status / Inventory toggle button has been replaced with a menu, which is better UI design
Bag shading / highlighting is no longer active when viewing Mail Status
Window Scaling now works correctly

New Features: 1.1.4
/autocrit opens the Inventory Browser
/autocrit <itemname> opens the Inventory Browser and fills in the search field
The Mail Catalog has been merged into the Inventory Browser, thus significantly reducing screen use

Bug Fix: The open bags button in the options panel is diabled when Bagnon or Combuctor is active.
This is to prevent a conflict between the addons.

New Features: 1.1.3
Added a UI Scale option in the AutoCRIT GEneral Options Pane.
Long Guild Names are gracefully handled in the Inventory Browser.
The mail status is not updated unless the mail catalog window is open.

New Features: 1.1.2
When sending mail to alts, the alt's mail status list is automtically updated.
Tooltips will show the locations of items when holding down alt-key.
Empty bag and bank slots are tracked.
Escape key now closes AutoCRIT windows.
Mail Status list is now in a scrollable window.
Mail Status list is now affected by the realm / faction buttons
You can now log into one character, and view the mail expirations for all of your characters.
Post A Reply Comment Options
Unread 03-03-11, 08:11 PM  
adinhb
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 18
Uploads: 3
Originally posted by Theondry
After leaving this for awhile, I decided to try this again, and was disappointed that the configuration options are still messed up.

I'm still only offered the ability to change "repairs" and "trash options", while my tooltips are still held hostage.

Manually editing AutoCRIT.lua removes all instances of tooltip modification, which is not a very good solution.

Specifically, it's nice to know where things are when I'm doing a search, but messing with tooltips in my bag or inventory gets to be rather old, and it would be nice if there was a way to only display location information on a keypress, or only while doing a search.
My next plan of action is to revisit the prefs code, and start adding in all the options. Alas, I keep getting pulled away from the computer.

For the time being: In the file AutoCRIT/Inventory/Tooltip.lua, replace the function local function OnTooltipSetItem(self, ...) with this code (function starts on line 116)

local function OnTooltipSetItem(self, ...)
if IsControlKeyDown() then
local itemLink = select(2, self:GetItem());
if itemLink then
local itemID = GetIDFromLink(itemLink);
AddTooltipInfo(self, itemID)
end;
end;
end;

This will cause the extra tooltip info to only appear when you have the control key down.
Last edited by adinhb : 03-03-11 at 08:12 PM.
Report comment to moderator  
Reply With Quote
Unread 03-03-11, 04:52 PM  
Theondry
A Deviate Faerie Dragon
AddOn Author - Click to view AddOns

Forum posts: 11
File comments: 110
Uploads: 1
After leaving this for awhile, I decided to try this again, and was disappointed that the configuration options are still messed up.

I'm still only offered the ability to change "repairs" and "trash options", while my tooltips are still held hostage.

Manually editing AutoCRIT.lua removes all instances of tooltip modification, which is not a very good solution.

Specifically, it's nice to know where things are when I'm doing a search, but messing with tooltips in my bag or inventory gets to be rather old, and it would be nice if there was a way to only display location information on a keypress, or only while doing a search.
__________________
Theondry of Perenolde
Last edited by Theondry : 03-03-11 at 04:55 PM.
Report comment to moderator  
Reply With Quote
Unread 12-23-10, 07:45 PM  
adinhb
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 18
Uploads: 3
Re: Stack Overflow

Originally posted by moldavia
Been getting this Stack Overflow error on all toons on 3 different accounts which always happen when landing/porting/entering any main town. When mousing over anything this error happens 100% of the time for each person/item you mouse over. All my mods are up to date as possible and the problem exists even with only AutoCRIT enabled. I moved back to 116 since it does not do this. Thanks for your time.
I'm looking into it. I was getting a similar problem. Alas, I wasn't getting the lua errors, as I turned them off since I was suffering from the inspect bug.
Last edited by adinhb : 12-28-10 at 05:51 PM.
Report comment to moderator  
Reply With Quote
Unread 12-22-10, 01:49 PM  
Theondry
A Deviate Faerie Dragon
AddOn Author - Click to view AddOns

Forum posts: 11
File comments: 110
Uploads: 1
missing interface options

On some characters, I am only offered interface options for "bank resupply" and "merchant resupply".

I have reproduced this with my normal addon load, as well as no other addons loaded. I have also reproduced this after deleting the saved variable file for this addon.

I'm not able to figure out how it chooses which characters to disable these menu trees from.
__________________
Theondry of Perenolde
Report comment to moderator  
Reply With Quote
Unread 12-10-10, 10:08 PM  
moldavia
A Defias Bandit

Forum posts: 2
File comments: 31
Uploads: 0
Stack Overflow

Been getting this Stack Overflow error on all toons on 3 different accounts which always happen when landing/porting/entering any main town. When mousing over anything this error happens 100% of the time for each person/item you mouse over. All my mods are up to date as possible and the problem exists even with only AutoCRIT enabled. I moved back to 116 since it does not do this. Thanks for your time.

Date: 2010-12-10 21:58:57
ID: -1
Error occured in: Global
Count: 32
Message: ..\AddOns\AutoCRIT\Inventory\Tooltip.lua line 116:
stack overflow
Debug:
(tail call): ?
[C]: GetName()
AutoCRIT\Inventory\Tooltip.lua:116: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
...
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117: ?()
AutoCRIT\Inventory\Tooltip.lua:117:
AutoCRIT\Inventory\Tooltip.lua:114
[C]: Hide()
SlideBar\SlideMain.lua:147:
SlideBar\SlideMain.lua:147
AddOns:
StopTheSpam, v2.00.20000
Swatter, v3.2.1 (<%codename%>)
AckisRecipeList, v2.0.5
AllPlayed, v40000-1 $Revision: 230 $
Atlas, v1.18.0
AtlasBattlegrounds, v1.18.0
AtlasDungeonLocs, v1.18.0
AtlasOutdoorRaids, v1.18.0
AtlasTransportation, v1.18.0
AtlasLoot, vv6.01.01
AtlasQuest, v4.5.0 BETA
AutoCRIT, v2.0.0
AutoCRITCache, v2.0.0
Babylonian, v5.1.DEV.130
BadBoy, v6.216
BadBoyCCleaner, v3.12
BadBoyGuilded, v1.0.1
BadBoyLevels, v2.75
Bejeweled, v1.1
BrokerProfessionsMenu, v
BuffTimers, v3.1
ChatThrottleLib, v19
CombatCaller, v
Combuctor, v2.2.4
CombuctorSets, v
Configator, v5.1.DEV.282
Cooldowns, v
CTPartyBuffs, v3.300 (CTMod 3.3)
DBMCore, v
DebugLib, v5.1.DEV.275
Decursive, v2.6.0.1
DFontChatSizes, v1.1
EasyMail, v
Elephant, v3.1.0
Enchantrix, v5.10.4998 (CrouchingKangaroo)
EnhancedStackSplit, v40000-1
EveryQuest, v2.3r168
FBOutfitDisplayFrame, v0.9.9b
FBTitan, v0.9.9
FishingBuddy, v0.9.9e Beta 6
FluidFrames, v2.3
Gatherer, v3.2.2
GFWFactionFriend, v4.0.1
GFWFeedOMatic, v4.0
Healium, v
InFlightLoad, v4.0.003
MapNotes, v6.00.40000
MinimapZoom, v4.0
MonkeyBuddy, v
MonkeyLibrary, v
MonkeyQuest, v
MonkeyQuestLog, v
MoveAnything, v11.4.5
Overachiever, v0.57
OverachieverTabs, v0.57
PartyCastingBars, v2.0
Peggle, v1.02a
Portfolio, v1.23
RatingBuster, v
Recount, v
SlideBar, v3.2.1 (<%codename%>)
StackCount, v1.0
Stubby, v5.10.4998 (CrouchingKangaroo)
SwindlerPreventer, v4.0.1a
Tipsy, v$project-version$
Titan, v5.0.1.40000 - Revision 485
TitanBag, v5.0.1.40000
TitanClock, v5.0.1.40000
TitanCoords, v5.0.0.40000
TitanGatherer, v4.0.0
TitanGold, v5.0.1.40000
TitanLocation, v5.0.1.40000
TitanPerformance, v5.0.1.40000
TitanRecount, v4.0.0
TitanRepair, v5.0.1.40000
TitanWG, v1.1.8.40000
UnitFrameTweaks, v1.4
BlizRuntimeLib_enUS v4.0.3.40000 <us>
(ck=776)
Report comment to moderator  
Reply With Quote
Unread 12-05-10, 02:21 AM  
adinhb
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 18
Uploads: 3
Originally posted by moldavia
Not sure how often the Author(s)/Helper(s) come look at the site here so just wanted to post early. Thank you for all the work you do making/updating this mod and my family and I appreciate it since it helps make the game more enjoyable. I wanted to wish You and Your Family a Happy Holidays and New Year. Moldavia and Family
Thank you, i am glad you enjoy my addon. I hope you have a happy holidays as well.
Report comment to moderator  
Reply With Quote
Unread 11-30-10, 08:44 AM  
moldavia
A Defias Bandit

Forum posts: 2
File comments: 31
Uploads: 0
Not sure how often the Author(s)/Helper(s) come look at the site here so just wanted to post early. Thank you for all the work you do making/updating this mod and my family and I appreciate it since it helps make the game more enjoyable. I wanted to wish You and Your Family a Happy Holidays and New Year. Moldavia and Family
Report comment to moderator  
Reply With Quote
Unread 11-30-10, 08:21 AM  
moldavia
A Defias Bandit

Forum posts: 2
File comments: 31
Uploads: 0
Re: Re: Auto get items doesnt work

Originally posted by adinhb
I am working on a heavy refactor of the code base now. This may take a bit of time. Sorry for any delays.
Ok no problem thanks for working on the mod as it is. Not like taking it out of the bank is hard lol. Will look forward to whenever it is release and again thanks a lot and Happy Holidays to you and your Family.
Report comment to moderator  
Reply With Quote
Unread 11-29-10, 06:31 PM  
adinhb
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 18
Uploads: 3
Re: Auto get items doesnt work

Originally posted by moldavia
I noticed the auto getting of items for quests has not worked since 4.0 update. Is there any ETA on a fix for this? Does not work for all 5 of us that use the mod. Thanks a lot for your time and the mod.
I am working on a heavy refactor of the code base now. This may take a bit of time. Sorry for any delays.
Report comment to moderator  
Reply With Quote
Unread 11-18-10, 07:51 PM  
moldavia
A Defias Bandit

Forum posts: 2
File comments: 31
Uploads: 0
Auto get items doesnt work

I noticed the auto getting of items for quests has not worked since 4.0 update. Is there any ETA on a fix for this? Does not work for all 5 of us that use the mod. Thanks a lot for your time and the mod.
Report comment to moderator  
Reply With Quote
Unread 11-16-10, 11:08 PM  
adinhb
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 18
Uploads: 3
Re: hard to reproduce bug

Originally posted by Theondry
If I do a command line search for something, I experience problems when I try to check for that item on other characters. Clicking on their name in the lefthand panel, the area below their name where it would allow me to further specify if I'm interested in bags, equipped, bank, etc., is blank.
Further, the command line search, while working for the current character, does not give any entries for the other characters.
Is it still having these issues with the latest WoW update(2010 Nov 16)?

I apologize, as I have not had as much time to look at it as of late.
Report comment to moderator  
Reply With Quote
Unread 11-08-10, 06:09 PM  
Theondry
A Deviate Faerie Dragon
AddOn Author - Click to view AddOns

Forum posts: 11
File comments: 110
Uploads: 1
hard to reproduce bug

If I do a command line search for something, I experience problems when I try to check for that item on other characters. Clicking on their name in the lefthand panel, the area below their name where it would allow me to further specify if I'm interested in bags, equipped, bank, etc., is blank.
Further, the command line search, while working for the current character, does not give any entries for the other characters.
__________________
Theondry of Perenolde
Report comment to moderator  
Reply With Quote
Unread 10-14-10, 04:28 AM  
adinhb
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 18
Uploads: 3
Originally posted by Theondry
Would it be feasible to enable linking from the inventory browser? (thanks very much for making the commandline searcher.
Eventually, I plan on adding this feature. Right now, I need to investigate what issues it has with 4.0.

I apologize for not responding to your request earlier.
Report comment to moderator  
Reply With Quote
Unread 09-24-10, 08:52 AM  
Theondry
A Deviate Faerie Dragon
AddOn Author - Click to view AddOns

Forum posts: 11
File comments: 110
Uploads: 1
Would it be feasible to enable linking from the inventory browser? (thanks very much for making the commandline searcher.
__________________
Theondry of Perenolde
Report comment to moderator  
Reply With Quote
Unread 08-28-10, 02:44 AM  
Malthus
A Murloc Raider
 
Malthus's Avatar

Forum posts: 8
File comments: 47
Uploads: 0
Originally posted by adinhb
It should be keeping your window placed on a per character basis.
And it does, works as it should. I am sorry for the false request, I have many alts, and probably that is why I had this wrong idea.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: