Addon Information
Works with 3.2
Download Latest Version.
To add favorites please register for a free account. If you already have one you need to login. How do I install this? (FAQ)
Author:
Version:
20090810-345
Date:
08-10-2009 05:54 PM
Size:
176.14 Kb
Downloads:
81,278
Favorites:
296
MD5:
Pictures
Click to enlarge
TBag-Shefki
TBag-Shefki   Popular! (More than 5000 hits)
This is the long awaited update to TBag that fixes a number of bugs.

TBag is a WoW Addon that provides an alternative bag and bank interface. It was built by modifying Engbags an addon who has essnetially the same functionality is missing some of the features of TBag.

Talos the original author of Tbag his this to say about it when he released it:

"In addition to the auto-sorting you've come to know and love, I've added many new features, including searching for items (in mail, etc.) You can also see and use the original default UI bags, which have slots free overlaid on top of them. There are also many convenience features, like highlighting new items, colored spotlighting, and purchase bank bags without having to unload the addon. A visual edit mode allows you to rearrange categories to your taste, and an advanced customization window enables you to completely configure every aspect of TBag."

This is a modification of his 070123 release for WoW 2.0.3. The modifications were done by Shefki. See the Changelog file for details of the changes I made. The ToDo.txt file consists of ToDo items that were found in the original TBag release. Some of them are not terribly relevent to my my intentions, some I'm unclear on what he meant and others seem to have already been fixed. See my Todo List below.

Getting Started

TBag can only "see" something you've seen, so for every character:

1) Open your bags 2) Go to the bank 3) Check your mail 4) View your body 5) Open all your trade windows

This allows you to view the bag and bank contents of your characters at any time (sorted according to their trade skills) by clicking the name dropdown in the upper right. It also enables you to do a full item search from the search textbox just to the left of the name dropdown.
  Change Log - TBag-Shefki
* 20090810-r345-Shefki
Note: This version contains a number of sorting changes the following
commands are advised after backing up any modified sorting rules you have.
/tinv resetsorts
/tbnk resetsorts
- Fix for the reset new dropdown menu.
- Fix for the reset command line command.
- Fix for the cancel button on the color picker.
- Improve support for Heirloom items.
- Rework profession scanning code to no longer depend upon the blizzard
tradeskill UI.
- TRADE1_CREATED and TRADE2_CREATED actually work now.
- Improve sorting for Darkmoon cards.
- Sorting updates for some items added in 3.1 previously missed.
- Sorting updates for items added in 3.2.0
- Item db update for 3.2.0
- deDE update.
- TOC bump to mark addon as current.
  Optional Files - TBag-Shefki
Sorry, there are currently no optional files available.
  Archived Versions - TBag-Shefki
File Name
Version
Size
Author
Date
20090417-324
174kB
Shefki
04-17-2009 04:01 AM
20090215-312
173kB
Shefki
02-15-2009 09:06 PM
20090122-r301
204kB
Shefki
01-23-2009 02:50 AM
20081112-r276
191kB
Shefki
11-12-2008 08:15 PM
  Comments - TBag-Shefki
Post A Reply Comment Options
Old 11-05-2009, 08:30 PM  
Faraque
A Wyrmkin Dreamwalker
 
Faraque's Avatar

Forum posts: 58
File comments: 88
Uploads: 1
Thank you for posting that change in code. I didn't realize just how annoying that menu was till I read you had a fix for it. I'm always and forever working around the menu because I click to fast putting stuff in bank, or from bank.

Big thanks. Also, Shefki, seriously consider using this in your update.
__________________
"imo Fara raged and gave Joker his scars" - Blueninja of Shadowmoon
Faraque is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 09-22-2009, 03:11 PM  
Aerials
A Murloc Raider
Interface Author - Click to view interfaces

Forum posts: 9
File comments: 32
Uploads: 2
Hi, this addon rocks, and I thank you for continuing it. I have a suggestion though.... the right click menu can get annoying, I'm trying to modify it to only show if i do ctrl+right click not entirely sure where to look yet, i checked tbagopt.lua, gonna keep checking. but the suggestion is to just make either holding a modifier key while right clicking show the menu or just to disable it and only use the button for the menu.

----- edit
seems that it's mainframe.lua that has it, working on modifying it for myself, i'll post what i have done if i get it working

---- edit
ok, was as easy as i expected.... i changed:

Code:
function MainFrame:OnMouseDown(button)

  if button == "LeftButton" then

    self:DragStart()

  elseif button == "RightButton" then

    HideDropDownMenu(1)

    self.RightClickMenu_mode = "mainwindow"

    self.RightClickMenu_opts = {}

    ToggleDropDownMenu(1, nil, self.RightClickMenu, "cursor", 0,0)

  end

end
to:
Code:
function MainFrame:OnMouseDown(button)

  if button == "LeftButton" and IsControlKeyDown() then

    self:DragStart()

  elseif button == "RightButton" and IsControlKeyDown() then

    HideDropDownMenu(1)

    self.RightClickMenu_mode = "mainwindow"

    self.RightClickMenu_opts = {}

    ToggleDropDownMenu(1, nil, self.RightClickMenu, "cursor", 0,0)

  end

end
in the file called MainFrame.lua

Last edited by Aerials : 09-22-2009 at 03:17 PM.
Aerials is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-08-2009, 05:25 AM  
Shefki
A Deviate Faerie Dragon
Interface Author - Click to view interfaces

Forum posts: 17
File comments: 96
Uploads: 6
Quote:
Originally posted by Syxx
Everytime I open Jobber with Tbag open I get this error.
Will be fixed in the next version.

Last edited by Shefki : 08-08-2009 at 05:26 AM.
Shefki is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-06-2009, 07:13 PM  
Shefki
A Deviate Faerie Dragon
Interface Author - Click to view interfaces

Forum posts: 17
File comments: 96
Uploads: 6
Quote:
Originally posted by thebadmf
Is there a way to disable the right click menu? I often accidently open the menu when quickly sending items to mail and a way to just open the menu via a button would be great for me.
Unfortunately, not at this time. It's something that bothers me. Changing it is on hold until the new config system is in place. Which I'm not sure when I'll have time to finish.
Shefki is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-06-2009, 07:12 PM  
Shefki
A Deviate Faerie Dragon
Interface Author - Click to view interfaces

Forum posts: 17
File comments: 96
Uploads: 6
Re: config and memory usage

Quote:
Originally posted by tashaanne
Tbag uses more memory than any other addon I have, and I have an addon for everything...

Is there a way to remove some categories? Such as...putting all potions/flasks/buff food, in the same category? I can't seem to figure out how to reassign. When I try to change something I get an error message. Usually just telling me "nil value".
It's not the categories that use the memory it's the storing of the inventory and bank contents. There's really no way around this. Memory honestly isn't a huge concern. TBag uses a hunk of memory but it has to store a lot of info. So that's just the way it is. The use of the memory doesn't equate to bad performance. Memory does not equal CPU time.
Shefki is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-06-2009, 07:09 PM  
Shefki
A Deviate Faerie Dragon
Interface Author - Click to view interfaces

Forum posts: 17
File comments: 96
Uploads: 6
Quote:
Originally posted by dr_AllCOM3
TBag ist constantly doing something, even when the bags are closed.
http://img13.imageshack.us/img13/845...0509170645.jpg
I'm not 100% sure how Optionless(house) does CPU/sec but I'm pretty sure it's just CPU time divided by the time since the profiling addon stuff was reset. If you didn't reset after loading in I'd expect a fair amount of cpu time because TBag has to do some setup. But I'm sitting here and running Resource Tools and not really seeing much in the way of CPU time while tbag is closed.
Shefki is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-04-2009, 03:58 PM  
Shefki
A Deviate Faerie Dragon
Interface Author - Click to view interfaces

Forum posts: 17
File comments: 96
Uploads: 6
Just a note that I haven't had much time to work on TBag lately but it should work fine on 3.2. I'll get around to an update here in the next few days. It takes me a bit to get data together for items and what not after a major patch anyway.
Shefki is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 07-29-2009, 02:00 AM  
Barrious
A Deviate Faerie Dragon
 
Barrious's Avatar

Forum posts: 13
File comments: 1
Uploads: 2
Great addon

I've read all the comments here, many ppl are complaining about foolish stuff, well...to me it's foolish.

This is the single best bag addon I have seen out there, and I've tried them all. All in one bag that auto separates items in categories. Along with the options to change it to your preference. Simple and direct.

I tell ya, leave it like it is, you've done an amazing job on this one. I for one will use this "as is" with a couple of minor changes.


for what it's worth, thank you for maintaining this one.
__________________
Just remember 5 out of 4 people can't do fractions.
Barrious is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 07-21-2009, 12:09 PM  
thebadmf
is in disguise
 
thebadmf's Avatar

Forum posts: 5
File comments: 87
Uploads: 0
Is there a way to disable the right click menu? I often accidently open the menu when quickly sending items to mail and a way to just open the menu via a button would be great for me.
thebadmf is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 06-24-2009, 10:05 PM  
tashaanne
A Kobold Labourer

Forum posts: 1
File comments: 2
Uploads: 0
config and memory usage

Tbag uses more memory than any other addon I have, and I have an addon for everything...

Is there a way to remove some categories? Such as...putting all potions/flasks/buff food, in the same category? I can't seem to figure out how to reassign. When I try to change something I get an error message. Usually just telling me "nil value".
tashaanne is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 06-13-2009, 03:59 AM  
Syxx
A Frostmaul Preserver
 
Syxx's Avatar
Interface Author - Click to view interfaces

Forum posts: 298
File comments: 50
Uploads: 2
Everytime I open Jobber with Tbag open I get this error.

I love the mod.

Code:
[2009/06/13 02:56:37-248-x1]: TBag-version\Professions.lua:208: attempt to call global 'TradeSkillFrame_SetSelection' (a nil value)
TBag-version\Events.lua:132: in function <Interface\AddOns\TBag\Events.lua:129>
<in C code>: in function `UseAction'
Interface\FrameXML\SecureTemplates.lua:258: in function `handler':
Interface\FrameXML\SecureTemplates.lua:460: in function <Interface\FrameXML\SecureTemplates.lua:417>:
__________________

Last edited by Syxx : 06-13-2009 at 04:44 AM.
Syxx is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 06-05-2009, 11:14 AM  
dr_AllCOM3
A Defias Bandit
Interface Author - Click to view interfaces

Forum posts: 2
File comments: 37
Uploads: 3
TBag ist constantly doing something, even when the bags are closed.
http://img13.imageshack.us/img13/845...0509170645.jpg
dr_AllCOM3 is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 05-14-2009, 02:31 AM  
Shefki
A Deviate Faerie Dragon
Interface Author - Click to view interfaces

Forum posts: 17
File comments: 96
Uploads: 6
Quote:
Originally posted by Darim

But it could have been even better. Is there any chance you could add one more item category so we can highlight items that are very special to us (even if they are grey items)? It would be usefull for roleplayers like me who have -alot- of clothing. If you could just shift+click on those items and make them favorites so they get sorted for themselves that'd be great
You can do this already. Though the steps to do it are probably pretty much undocumented.

Make a new category
1) /tbag config
2) Scroll to the bottom and click Add new Cat
3) You'll see two lines with just UNKNOWN. On the next to last one put in whatever category name you want.
4) Click Assign cats (you'll see something like TBag: Unassigned category YOURCAT has been assigned to slot 1).
5) Click close

Assign your new category to your desired bar
1) Open up your inventory window and click on the gear icon (to go into edit mode)
2) Right click on the box labeled 1.
3) Click on Move: YOURCAT
4) Left click on the bar you wish to put YOURCAT on.

Assign an item to your new category
1) While in edit mode (click gear icon if you're not already but you would be if you're following along) right click on an item.
2) Mouse over Assign item to category and then Categories within bar N where N is the bar you assigned the category you wanted to use to.
3) Click on your category.

Repeat the item assignment for every item you want to move.

For the advanced user you can write your own rules in /tbag config instead of using the individual item assignment, but this is probably easier for one offs.

Keep in mind that if you want to pickup sorting changes from the default rules when you do /tbag resetsorts you'll lose the specific item assignments and will have to do them again, though your custom created category will continue to exist and be assigned to the bar even though it won't show under the rules. I realize this is inconvenient, eventually I'll get the new config UI done and we won't have this issue anymore.
Shefki is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 05-14-2009, 02:21 AM  
Shefki
A Deviate Faerie Dragon
Interface Author - Click to view interfaces

Forum posts: 17
File comments: 96
Uploads: 6
Quote:
Originally posted by VerasGunn
Tbag is acting rather strangely, and it's a bit annoying. I can open it up just fine, but it refuses to show Valiant tokens in my bag, tier tokens, gold wishing well coins, and cut gems.
/tinv config

Make sure Number of Horizontal Bars is set to a value that evenly divides 32 or however many bars you are actually using. 1,2,4,8 are generally safe values.
Shefki is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-29-2009, 11:57 AM  
Darim
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
I love this addon! Especially the search function, that's simply a must have! Along with all the other nice features ofcourse.

But it could have been even better. Is there any chance you could add one more item category so we can highlight items that are very special to us (even if they are grey items)? It would be usefull for roleplayers like me who have -alot- of clothing. If you could just shift+click on those items and make them favorites so they get sorted for themselves that'd be great
Darim is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Post A Reply



Category Jump:




The Network:
EQInterface | EQ2Interface | LoTROInterface | MMOInterface | War.MMOUI | WoWInterface | VGInterface | Allakhazam | Thottbot | Wowhead | Zam


©2009 MMOUI / ZAM Network
vBulletin - Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.