Download
(5Kb)
Download
Updated: 03-04-18 03:40 AM
Pictures
File Info
Updated:03-04-18 03:40 AM
Created:01-23-15 07:01 AM
Downloads:5,796
Favorites:29
MD5:

Binds When?  Popular! (More than 5000 hits)

Version: 7.3.5.0
by: Phanx, Akkorian

I am no longer developing or maintaining World of Warcraft addons. I haven't played in years, and don't have the time or interest to continue working on addons for a game I don't play anymore. If you are an addon author interested in continuing one of my addons, please see https://phanx.net/addons/. If you are an addon user, sorry, but there won't be any more fixes or updates from me.
Shows BoA/BoE text on items in your bags and bank.

Supported bag addons:
  • Blizzard default UI
  • AdiBags
  • Bagnon
  • cargBags*
  • Combuctor
  • DerpyStuffing
  • ElvUI
  • Inventorian
  • LiteBags
  • TukUI

Feedback

Post a ticket on GitHub or a comment on this page. If you are requesting support for a bag addon, please include a link to its download page.

____________________

* cargBags layouts must have an "## X-cargBags: AnythingHere" line in their TOC file. The second half of the line doesn't matter at all -- it can be "AnythingHere" or "cargBags" or "AgLj8vMjc5PDw8J" -- it just needs to exist.

Version 7.3.5.0
  • Fixed an error with the Bagnon bank frame
  • Fixed an error when no addons using AceAddon-3.0 are loaded

Version 7.3.0.0
  • Updated for WoW 7.3
  • Fixed support for AdiBags

Version 7.1.0.1
  • Added support for Backpack

Version 7.1.0.0
  • Updated for WoW 7.1

Version 7.0.3.0
  • Updated for WoW 7.0

Version 6.2.2.5
  • Added support for Inventorian

Version 6.2.2.4
  • Fixed errors with Bagnon_VoidStorage
  • Added support for Combuctor, ElvUI, TukUI

Version 6.1.0.3
  • Updated for WoW 6.1
  • Added support for AdiBags, DerpyStuffing, LiteBags

Version 6.0.3.2
  • Added support for cargBags (requires an X-cargBags TOC field in the layout)

Version 6.0.3.1
  • First public release.
Post A Reply Comment Options
Unread 03-20-20, 03:19 AM  
aallkkaa
A Warpwood Thunder Caller
 
aallkkaa's Avatar
AddOn Author - Click to view AddOns

Forum posts: 98
File comments: 32
Uploads: 3
As with Barrel, I just wanted to say I hope this addon keeps working in the future.
Report comment to moderator  
Reply With Quote
Unread 09-19-18, 09:40 AM  
RSK
A Kobold Labourer

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

I made an account here to say I love you both for this addon, thank you! <3

Report comment to moderator  
Reply With Quote
Unread 09-05-18, 08:21 AM  
Barleduq
Premium Member
 
Barleduq's Avatar
Premium Member

Forum posts: 135
File comments: 742
Uploads: 0
Does this need an update for BfA?

Or do I just need to keep 'load out of date addons' checked?
-Barleduq
Report comment to moderator  
Reply With Quote
Unread 03-29-17, 07:01 AM  
Krabkolash
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Know you're probably busy and appreciate the work just wanted to provide some info about an error I've been getting since 7.2 hit.

Seems to happen when I interact wtih a BoA item as far as moving it to a different container? So throwing it into a bank or putting it in the mail the error pops up. Text below:

https://pastebin.com/Qphew7uL

Thanks a ton.

Edit: Just got the same error trying to put a Soulbound item in my personal bank.
Last edited by Krabkolash : 03-29-17 at 07:05 AM.
Report comment to moderator  
Reply With Quote
Unread 03-07-17, 09:01 PM  
griddark
A Defias Bandit
 
griddark's Avatar
AddOn Author - Click to view AddOns

Forum posts: 2
File comments: 119
Uploads: 7
I can't get bindwhen working with AdiBags. Anyone else have this problem?
Report comment to moderator  
Reply With Quote
Unread 10-25-16, 01:11 AM  
MoonWitch
A Firelord
AddOn Author - Click to view AddOns

Forum posts: 455
File comments: 162
Uploads: 9
Originally Posted by Phanx
It goes in the cargBags layout's TOC file. The value of the field isn't really important, but it shouldn't conflict with any existing globals, so I'd recommend just sticking with "cargBags":

Code:
## X-cargBags: cargBags
Without this line, cargBags isn't made available to other addons, and BindsWhen can't hook into it.
Trying to do the same to http://www.wowinterface.com/download...-Backpack.html
Or rather, get BindsWhen to support it --
__________________
Report comment to moderator  
Reply With Quote
Unread 07-30-16, 05:31 AM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5617
File comments: 2321
Uploads: 54
The simplest solution is probably just to open CaerdonWardrobe/Core.lua in Notepad or similar, and remove the lines highlighted in red, leaving the first and last (non highlighted) lines, near the top:

Code:
local bindTextTable = {
	[ITEM_ACCOUNTBOUND]        = L["BoA"],
	[ITEM_BNETACCOUNTBOUND]    = L["BoA"],
	[ITEM_BIND_TO_ACCOUNT]     = L["BoA"],
	[ITEM_BIND_TO_BNETACCOUNT] = L["BoA"],
	[ITEM_BIND_ON_EQUIP]       = L["BoE"],
	[ITEM_BIND_ON_USE]         = L["BoE"]
}
Long-term, a better solution would probably be for the author of that addon to show the bind type on non-transmog items, and then if you want to see the extra transmog info, you just use that addon instead of BindsWhen.

I could also detect if CaerdonWardrobe is running and forcibly remove its text in BindsWhen, but I'm not really sure I want to do that.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
Report comment to moderator  
Reply With Quote
Unread 07-29-16, 10:54 AM  
samvx
A Defias Bandit
 
samvx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 3
File comments: 118
Uploads: 3
Conflict with other addon

Hi Phanx tyvm for all your work.

it seems there is a conflict with an addon (Caerdon Wardrobe) using the same text , but removes on the rings, necks, trinckets or other unused in xmog
Report comment to moderator  
Reply With Quote
Unread 07-24-16, 10:05 PM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5617
File comments: 2321
Uploads: 54
cargBags layouts must provide an "X-cargBags" field in their TOC file.
It goes in the cargBags layout's TOC file. The value of the field isn't really important, but it shouldn't conflict with any existing globals, so I'd recommend just sticking with "cargBags":

Code:
## X-cargBags: cargBags
Without this line, cargBags isn't made available to other addons, and BindsWhen can't hook into it.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
Report comment to moderator  
Reply With Quote
Unread 07-24-16, 10:04 PM  
Barleduq
Premium Member
 
Barleduq's Avatar
Premium Member

Forum posts: 135
File comments: 742
Uploads: 0
Thank you!

Thanks for the update for 7.0.3!
-Barleduq
Report comment to moderator  
Reply With Quote
Unread 07-24-16, 04:19 AM  
Triksterism
A Wyrmkin Dreamwalker
 
Triksterism's Avatar
AddOn Author - Click to view AddOns

Forum posts: 54
File comments: 34
Uploads: 1
With my recent ventures into mog farming, I figured this addon would come in quite handy. My question is: I use carbags and I noticed you mention I would need to change the .toc -- What exactly must I do? Do I edit the toc of your addon or carbags and what do I add/edit?
Report comment to moderator  
Reply With Quote
Unread 03-25-16, 02:13 PM  
Shen
A Murloc Raider

Forum posts: 5
File comments: 15
Uploads: 0
Hey, I've installed Binds When? addon, and it works great on elvUI 9.14, except it throws an error sometimes, when the bags are closed.

Here's a pastebin of the error.

http://pastebin.com/E2R9wehU

Edit: I noticed it also throws the error on the same line when you right click a piece of equipment in the bag to equip it.

Edit 2: Download link is http://www.tukui.org/downloads/elvui-9.14.zip
__________________
-Shen
Last edited by Shen : 03-26-16 at 01:17 PM.
Report comment to moderator  
Reply With Quote
Unread 10-22-15, 01:43 AM  
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 5617
File comments: 2321
Uploads: 54
Re: Great addon, and a feature request

Originally Posted by Cantankerous
If there was an option to show the required character level that would be nice for viewing gear for alts that's stashed in the bank, instead of having to mouse over every item.
While I suppose this could be useful in a few cases, I probably won't add such a feature. I'm not really sure where the text would go, anyway... just replace the "BoE" text?

Originally Posted by Gingersnaps
im going to see if theres something else whats causing the error..maybe outdated elvui files or something..
If you're still getting the error once you're sure everything is up to date, give me a link to the page where I can download the version of ElvUI you're using.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
Report comment to moderator  
Reply With Quote
Unread 10-19-15, 04:37 PM  
Cantankerous
A Deviate Faerie Dragon

Forum posts: 13
File comments: 7
Uploads: 0
Great addon, and a feature request

Really useful addon. Thanks!

If there was an option to show the required character level that would be nice for viewing gear for alts that's stashed in the bank, instead of having to mouse over every item.
Report comment to moderator  
Reply With Quote
Unread 10-18-15, 06:41 AM  
Gingersnaps
A Kobold Labourer
 
Gingersnaps's Avatar

Forum posts: 0
File comments: 5
Uploads: 0
Re: Re: error newest file

Originally Posted by Phanx
Try changing line 339 from:
Code:
		local button = self.Bags[bag][slot]
to this:
Code:
		local button = self[bag][slot]
At first glance the existing line maybe looks incorrect; I don't actually use ElvUI, so the ElvUI support wasn't tested by me, but someone else reported it was working.

The other option would be that you're using something that identifies itself as ElvUI but isn't actually ElvUI, in which case you'll have to post a link to where the version you're using can be downloaded.
changed and it didnt work now i got 281 errors :P

its just the same error as before.

im going to see if theres something else whats causing the error..maybe outdated elvui files or something..
thnx for the reply tho
Last edited by Gingersnaps : 10-18-15 at 07:03 AM.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: