Download
(7 Kb)
Download
Updated: 08/02/16 12:15 AM
Pictures
File Info
Compatibility:
Shadows of the Hist (2.5)
Updated:08/02/16 12:15 AM
Created:10/11/15 03:31 AM
Monthly downloads:26
Total downloads:4,120
Favorites:8
MD5:
Guild Bank Twiddler
Version: 1.0.5
by: kendaron [More]
Suffering from the guild bank endless load blues? Well this addon is for you!

With the patent pending Twiddle button, a simple click will swap between guild banks and force a refresh on the original.

As an added bonus it has a dropdown to quickly select a guild bank.

Don't waste any more precious gaming time. Get it now!

To reduce on screen clutter the Twiddle button is designed to auto-hide when not in use. Simply hover the mouse over the guild drop down and it will appear.

There are some options that can be set by the /gbt chat command. Just type /gbt to see them

If Twiddle button does not appear for you, or you would prefer it to always stay visible you can use the following chat commands:

/gbt hideoff - To disable autohide
/gbt hideon - To enable autohide (default)

You can change the order of the guilds in the dropdown by using the following commands
/gbt sortindex - to sort by guild index
/gbt sortalpha - to sort alphabetically

Both these settings will be saved across sessions

NOTE:

1) For this to work you must be a member of at least two guilds.
2) It still may require multiple clicks of the twiddle button for the guild bank items to appear. It cannot change the game code. But it does take the chore out of performing the swap!
3) You can move the addon by dragging on the gray square to the left of the dropdown.
1.0.5
- updated for latest API
1.0.4
- updated for Dark Brotherhood
1.0.3
- updated for latest API
1.0.2
- added chat options /gbt sortindex and sortalpha to sort the order of the guild dropdown
1.0.1
- added chat options /gbt hideon and hideoff. You can also use /guildbanktwiddler but that is long!
Optional Files (0)


Archived Files (5)
File Name
Version
Size
Uploader
Date
1.0.4
7kB
kendaron
06/01/16 08:29 AM
1.0.3
7kB
kendaron
03/07/16 05:51 AM
1.0.2
7kB
kendaron
11/03/15 12:15 AM
1.0.1
6kB
kendaron
10/30/15 04:01 PM
1.0.0
6kB
10/11/15 03:31 AM


Post A Reply Comment Options
Unread 11/19/15, 05:26 AM  
Noobanidus
 
Noobanidus's Avatar
AddOn Author - Click to view AddOns

Forum posts: 23
File comments: 53
Uploads: 23
Relog fixed it just fine, and yeah, I thought it was strange also.
Report comment to moderator  
Reply With Quote
Unread 11/19/15, 02:11 AM  
kendaron
AddOn Author - Click to view AddOns

Forum posts: 6
File comments: 190
Uploads: 3
I would think reloadui should fix things... strange that it is not as it populates at addon load. Perhaps the ESO API is not updating correctly? I could always re populate the dropdown on the guild left/joined events.

When you finally logged out and in, did it fix itself up?

Originally Posted by Noobanidus
Looks like changing guilds might also break things. I've reloaded my ui since I changed, but haven't relogged, but having issues: before reloadui, the drop down had my five old guilds. After reloadui, the dropdown is empty.
Report comment to moderator  
Reply With Quote
Unread 11/19/15, 01:36 AM  
Noobanidus
 
Noobanidus's Avatar
AddOn Author - Click to view AddOns

Forum posts: 23
File comments: 53
Uploads: 23
Looks like changing guilds might also break things. I've reloaded my ui since I changed, but haven't relogged, but having issues: before reloadui, the drop down had my five old guilds. After reloadui, the dropdown is empty.
Report comment to moderator  
Reply With Quote
Unread 11/04/15, 06:34 AM  
Noobanidus
 
Noobanidus's Avatar
AddOn Author - Click to view AddOns

Forum posts: 23
File comments: 53
Uploads: 23
Re: Re: Sorting

Sounds good! And yeah, but my standard response to "this doesns't work exactly quite like how I want it to" is "dive into the source code and change it"

Originally Posted by kendaron
You can now change the order of the guilds in the dropdown by using the following commands
/gbt sortindex - to sort by guild index
/gbt sortalpha - to sort alphabetically

Originally Posted by Noobanidus
Hey hey,

ComboBox seems to sort the items by default which gets rather annoying when you're used to your guilds in a certain order. Adding the following at around line ~99 of GuildBankTwiddler.lua fixes it:

Lua Code:
  1. -- don't sort the list alphabetically
  2.   self.guildDropdown:SetSortsItems(false)

Cheers
Report comment to moderator  
Reply With Quote
Unread 11/03/15, 12:20 AM  
kendaron
AddOn Author - Click to view AddOns

Forum posts: 6
File comments: 190
Uploads: 3
Re: Sorting

You can now change the order of the guilds in the dropdown by using the following commands
/gbt sortindex - to sort by guild index
/gbt sortalpha - to sort alphabetically

Originally Posted by Noobanidus
Hey hey,

ComboBox seems to sort the items by default which gets rather annoying when you're used to your guilds in a certain order. Adding the following at around line ~99 of GuildBankTwiddler.lua fixes it:

Lua Code:
  1. -- don't sort the list alphabetically
  2.   self.guildDropdown:SetSortsItems(false)

Cheers
Report comment to moderator  
Reply With Quote
Unread 11/02/15, 09:30 AM  
kendaron
AddOn Author - Click to view AddOns

Forum posts: 6
File comments: 190
Uploads: 3
Re: Sorting

I was actually going to implement a 'specify what ever order you like' option but the amount of effort to implement that for a sorting order that only slightly bothered me put me off.

My next preferred method was for alphabetical... this was deliberate. It obviously bugs you enough to delve into the code so I will provide a configuration chat option configuration to allow sorting by guild number or alphabetical. Hows that for a compromise?

Originally Posted by Noobanidus
Hey hey,

ComboBox seems to sort the items by default which gets rather annoying when you're used to your guilds in a certain order. Adding the following at around line ~99 of GuildBankTwiddler.lua fixes it:

Lua Code:
  1. -- don't sort the list alphabetically
  2.   self.guildDropdown:SetSortsItems(false)

Cheers
Report comment to moderator  
Reply With Quote
Unread 11/01/15, 10:22 PM  
Noobanidus
 
Noobanidus's Avatar
AddOn Author - Click to view AddOns

Forum posts: 23
File comments: 53
Uploads: 23
Sorting

Hey hey,

ComboBox seems to sort the items by default which gets rather annoying when you're used to your guilds in a certain order. Adding the following at around line ~99 of GuildBankTwiddler.lua fixes it:

Lua Code:
  1. -- don't sort the list alphabetically
  2.   self.guildDropdown:SetSortsItems(false)

Cheers
Report comment to moderator  
Reply With Quote
Unread 10/30/15, 10:27 PM  
kendaron
AddOn Author - Click to view AddOns

Forum posts: 6
File comments: 190
Uploads: 3
Excellent.

Lets hope after all that you find it useful

Originally Posted by SteveCampsOut
Whatever you did fixed it, didn't even have to turn autohide off.
Report comment to moderator  
Reply With Quote
Unread 10/30/15, 04:49 PM  
SteveCampsOut
 
SteveCampsOut's Avatar

Forum posts: 38
File comments: 363
Uploads: 0
Whatever you did fixed it, didn't even have to turn autohide off.
Report comment to moderator  
Reply With Quote
Unread 10/30/15, 04:07 PM  
kendaron
AddOn Author - Click to view AddOns

Forum posts: 6
File comments: 190
Uploads: 3
I have created a new release which has an option to always show the button

To disable autohide
/gbt hideoff

To enable autohide (default)
/gbt hideon

If you have the guild bank open while doing this you should see the button appear/disappear.

It is possible you have a graphical glitch. So if it still does not appear... try hovering your mouse over where is should be. I think a tooltip should appear regardless of whether the image is displayed or not.

If it is graphical, you could always try exiting the game and deleting the ShaderCache.cooked file (it gets regenerated by the game client)

Originally Posted by SteveCampsOut
Originally Posted by kendaron
It auto hides when the mouse is not over the guild dropdown, or that area. Are you saying that when you move your mouse over the dropdown it does not appear? If that is the case it is broken!

If it simply never shows, I could put an option in to make it always show. (Although it would be nice to know why!)

Originally Posted by SteveCampsOut
I have 5 guilds, and yet, Sadly, I see no button.... I've tried disabling every other addon I had and this button just doesn't show up.
Yes I've tried mousing over it and it does not show, with or without all my other addons.
Report comment to moderator  
Reply With Quote
Unread 10/30/15, 02:40 PM  
SteveCampsOut
 
SteveCampsOut's Avatar

Forum posts: 38
File comments: 363
Uploads: 0
Originally Posted by kendaron
It auto hides when the mouse is not over the guild dropdown, or that area. Are you saying that when you move your mouse over the dropdown it does not appear? If that is the case it is broken!

If it simply never shows, I could put an option in to make it always show. (Although it would be nice to know why!)

Originally Posted by SteveCampsOut
I have 5 guilds, and yet, Sadly, I see no button.... I've tried disabling every other addon I had and this button just doesn't show up.
Yes I've tried mousing over it and it does not show, with or without all my other addons.
Last edited by SteveCampsOut : 10/30/15 at 02:41 PM.
Report comment to moderator  
Reply With Quote
Unread 10/30/15, 05:31 AM  
kendaron
AddOn Author - Click to view AddOns

Forum posts: 6
File comments: 190
Uploads: 3
It auto hides when the mouse is not over the guild dropdown, or that area. Are you saying that when you move your mouse over the dropdown it does not appear? If that is the case it is broken!

If it simply never shows, I could put an option in to make it always show. (Although it would be nice to know why!)

Originally Posted by SteveCampsOut
I have 5 guilds, and yet, Sadly, I see no button.... I've tried disabling every other addon I had and this button just doesn't show up.
Report comment to moderator  
Reply With Quote
Unread 10/29/15, 08:05 PM  
SteveCampsOut
 
SteveCampsOut's Avatar

Forum posts: 38
File comments: 363
Uploads: 0
I have 5 guilds, and yet, Sadly, I see no button.... I've tried disabling every other addon I had and this button just doesn't show up.
Last edited by SteveCampsOut : 10/30/15 at 02:38 AM.
Report comment to moderator  
Reply With Quote
Unread 10/25/15, 04:44 PM  
SteveCampsOut
 
SteveCampsOut's Avatar

Forum posts: 38
File comments: 363
Uploads: 0
NABBED! If this works I will love you long time!
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: