Download
(180Kb)
Download
Updated: 03-21-19 07:00 PM
Pictures
File Info
Compatibility:
Tides of Vengeance (8.1.0)
Battle for Azeroth (8.0.1)
Shadows of Argus (7.3.0)
Updated:03-21-19 07:00 PM
Created:unknown
Downloads:2,017,375
Favorites:4,305
MD5:

Bagnon  Popular! (More than 5000 hits)

Version: 8.1.9
by: jaliborc, Tuller



Overview
Bagnon is a highly customizable bag replacement addon designed to help the player find items as quickly and as easily as possible. Beyond the basic all-bags-in-one functionality, Bagnon provides features such as:

  • Ability to view the items of any character, from anywhere *
  • Inventory, bank, vault and guild bank support
  • Coloring based on item quality and more
  • Intelligent item search engine
  • Tooltip item counts
  • Item rulesets
  • Databroker support
* - Requires the player to login and visit the bank once at each character

Plugins
A wide assortment of plugins has been made by people in the community:
Notes
  • Please submit bugs and feature requests at GitHub.
  • Are you a developer? Bagnon provides a rich API for developing plugins and extra rulesets!
  • Please consider supporting Bagnon by becoming a patron or submitting a donation.
  • Visit me at jaliborc.com.

Optional Files (1)
File Name
Version
Size
Author
Date
Type
1.5
2kB
10-17-10 01:40 PM
Addon


Post A Reply Comment Options
Unread 09-25-06, 12:37 AM  
Supernico
A Defias Bandit

Forum posts: 2
File comments: 21
Uploads: 0
/drool

looks very nice ^^

Originally posted by Tuller
Forgetting the localization thing was pretty much an accident, anyway:

Its unfinished, but it can serve as an example of something i happen to be messing around with right now. At the very least, Bagnon will have a new way of displaying items that uses a bit less code.
Report comment to moderator  
Reply With Quote
Unread 10-04-06, 10:42 AM  
hshh
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 10
Uploads: 1
Is it http://www.wowace.com/files/FixMe/FixMe-r12123.zip help for decrease the lag? There is container and game tooltip fix code.
Report comment to moderator  
Reply With Quote
Unread 10-05-06, 10:02 AM  
Tuller
A Warpwood Thunder Caller
 
Tuller's Avatar
AddOn Author - Click to view AddOns

Forum posts: 91
File comments: 1740
Uploads: 17
Originally posted by hshh
Is it http://www.wowace.com/files/FixMe/FixMe-r12123.zip help for decrease the lag? There is container and game tooltip fix code.
looking at the code, it'll prevent tooltips from updating so much, but it probably won't affect Bagnon.
Report comment to moderator  
Reply With Quote
Unread 10-05-06, 02:04 PM  
SquishyMage
A Deviate Faerie Dragon

Forum posts: 19
File comments: 43
Uploads: 0
Professions Bag coloring

Am I doing something wrong or not turning on a correct switch? My Cenarion Herb Bag slots are not green, but the standard grey. Thanks.
Report comment to moderator  
Reply With Quote
Unread 10-05-06, 03:48 PM  
skullforce
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
nice preivew

great work tuller. i was looking for a way to look at my alt's bank and stumbled upon this mod. very nicely made, looks sharp and works well. the all in one is a bit confusing for me and i probably cant deal with the chaos but i bookmarked this patiently awaiting the ability to sort like how you shown below. will we be able to make our own groupings? will we be able to hide the "all items" giant bag and put the remainder in like a misc or others bag?
Last edited by skullforce : 10-05-06 at 03:49 PM.
Report comment to moderator  
Reply With Quote
Unread 10-06-06, 05:29 PM  
Tuller
A Warpwood Thunder Caller
 
Tuller's Avatar
AddOn Author - Click to view AddOns

Forum posts: 91
File comments: 1740
Uploads: 17
Re: nice preivew

Originally posted by skullforce
will we be able to make our own groupings? will we be able to hide the "all items" giant bag and put the remainder in like a misc or others bag?
The screenshot's essentially a proof of concept that I could even do the filtering, I'll be updating Sage and Bongos before I actually update Bagnon again.
I think what I'm going to do with the UI is attempt dockable tabs, like the chat frame.

Am I doing something wrong or not turning on a correct switch? My Cenarion Herb Bag slots are not green, but the standard grey. Thanks
Make sure the option is turned on in the /bgn menu, but other than that, it should work.
Report comment to moderator  
Reply With Quote
Unread 10-11-06, 11:48 AM  
hshh
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 10
Uploads: 1
While mouse onenter item in bags, it call GameTooltip too much time. It make wow lag, it must need to fix.

[updated]
Last edited by hshh : 10-11-06 at 12:20 PM.
Report comment to moderator  
Reply With Quote
Unread 10-11-06, 01:14 PM  
hshh
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 10
Uploads: 1
Bagnon_Core\core\Item.lua

Code:
local BagnonItem_OnUpdate_elapsed = 0
function BagnonItem_OnUpdate()
	BagnonItem_OnUpdate_elapsed = BagnonItem_OnUpdate_elapsed + arg1
	if BagnonItem_OnUpdate_elapsed < 0.5 then return end
	BagnonItem_OnUpdate_elapsed = 0

	if not this.isLink and GameTooltip:IsOwned(this) then
		BagnonItem_OnEnter(this)
	end
end
It may reduce lag.
Report comment to moderator  
Reply With Quote
Unread 10-21-06, 05:44 PM  
Tuller
A Warpwood Thunder Caller
 
Tuller's Avatar
AddOn Author - Click to view AddOns

Forum posts: 91
File comments: 1740
Uploads: 17
Originally posted by hshh
Bagnon_Core\core\Item.lua

Code:
local BagnonItem_OnUpdate_elapsed = 0
function BagnonItem_OnUpdate()
	BagnonItem_OnUpdate_elapsed = BagnonItem_OnUpdate_elapsed + arg1
	if BagnonItem_OnUpdate_elapsed < 0.5 then return end
	BagnonItem_OnUpdate_elapsed = 0

	if not this.isLink and GameTooltip:IsOwned(this) then
		BagnonItem_OnEnter(this)
	end
end
It may reduce lag.
I adapted the code you gave for the onupdate handlers, thanks
Report comment to moderator  
Reply With Quote
Unread 10-22-06, 02:35 PM  
Winterfell
A Kobold Labourer

Forum posts: 1
File comments: 4
Uploads: 0
<3

I love your addons, and use Ludwig, Bongos, and Bagnon specifically. However, I've only been using Bagnon for the bank screen and pulling my bank inventory whenever I need it, and using Discord Mini Inventory for my standard bags due to the sorting it does in the AIOI view. I just saw your screenie of the sorting you may be adding...please do!! I love the design, small memory, and ease of Bagnon, and having a sort option is perfect! Keep up the great work!
Report comment to moderator  
Reply With Quote
Unread 10-22-06, 04:52 PM  
Ashley
A Kobold Labourer

Forum posts: 0
File comments: 8
Uploads: 0
It seems I cannot view my bank without being forced to use Banknon. I did not have this problem previously, not sure why I would have it now. Any ideas/suggestions on how to fix it?
Report comment to moderator  
Reply With Quote
Unread 10-23-06, 10:24 AM  
Tuller
A Warpwood Thunder Caller
 
Tuller's Avatar
AddOn Author - Click to view AddOns

Forum posts: 91
File comments: 1740
Uploads: 17
Originally posted by Ashley
It seems I cannot view my bank without being forced to use Banknon. I did not have this problem previously, not sure why I would have it now. Any ideas/suggestions on how to fix it?
It should be fixed in the most recent version
Report comment to moderator  
Reply With Quote
Unread 10-29-06, 10:01 AM  
Sideswipe
A Defias Bandit

Forum posts: 2
File comments: 12
Uploads: 0
Just got the newest version, and I get an error upon loading, and my bags don't update when their open and i get mail or sell stuff.
Report comment to moderator  
Reply With Quote
Unread 10-29-06, 12:05 PM  
Tuller
A Warpwood Thunder Caller
 
Tuller's Avatar
AddOn Author - Click to view AddOns

Forum posts: 91
File comments: 1740
Uploads: 17
Originally posted by Sideswipe
Just got the newest version, and I get an error upon loading, and my bags don't update when their open and i get mail or sell stuff.
I'd try deleting all Bagnon folders, then reinstalling.
Report comment to moderator  
Reply With Quote
Unread 11-04-06, 04:09 AM  
Twidget
An Aku'mai Servant
 
Twidget's Avatar

Forum posts: 33
File comments: 401
Uploads: 0
Error

Hi,
Getting the following error when ever I move an item in my bank from one spot to another (though sometimes I may move the item 2 or 3 times before the error appears but once it does it will appear from there on out):

Bagnon_Core\core\Bag/lua:68:attempt to index local 'bag' (a nil value)

Also... when I move something in my bags (non-bank) after a time or two the icon of the Backpack at the bottom dissapears. Not sure if these problems are related.

I have tried this with all other mods disabled and after doing a clean install of the mod including deleting the lua files it generated in the save var folders and the problem still happens.

I love the program... looking forward to using the sort feature... please tell me what to do to fix the above errors.

Thanks
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump:

Support AddOn Development!

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.