Download
(10 Kb)
Download
Updated: 08/09/14 03:09 AM
Pictures
File Info
Compatibility:
Update 3 (1.3.3)
Updated:08/09/14 03:09 AM
Created:05/04/14 01:10 AM
Monthly downloads:19
Total downloads:5,320
Favorites:24
MD5:
Restacker  Popular! (More than 5000 hits)
Version: 0.7.2
by: slowglass [More]
Introduction
This is currently a simple plugin with one job. That is to restack the items in your bag/bank.
The main time that I have found that you need this function is after a trade. This plugin allows you to restack your bank or inventory. This can be done using buttons on the bank/inventory windows.
The addon can also auto stack at the following times:
* After a successful trade
* Once the bank has been opened between the players inventory and the bank. (The direction is configurable)

UI Changes
Added buttons to:
* Inventory window: Restack
* Bank window: Restack and Move stacks

Move stacks button will move from bank to inventory or vice versa. Filling existing stacks of the same item but not using any additional slots


Commands
There is also a set of commands:
* /rs restack: restack the items in the players bag
* /rs inv: debug command that prints an inventory of all items. This will be deleted or improved in a later release

Contributions
All contributions are welcome. I am using github (https://github.com/slowglass/Restacker) to develope this. Feel free to create a branch and add you idea. However please leave master alone, that way I will some control of what is released

New Features - 0.4.0
* Added Lang support - thanks Dunkare
* Added tool tips on Inventory/Bank buttons
* Added log message for when nothing moved

Bug Fixes
* Fixed an issue where error resulted if non english language was used
* Fixed issue where hiding button on start up threw an error
v0.7.2
- Upgraded to 100008 of the API
v0.7.1
- Upgraded to 100007 of the API
v0.7.0
- Refactored Settings controls
-
v0.6.3
- Bumped API version
- Reformatted Show output
v0.6.2
- Improved French language support
v0.6.1
- Code refactoring
0.6.0
- Added ability to auto stack when opening bank
- Added ability to turn off auto stacking when trade completes
- Added ability to control verbosity of the plugin
v0.5.1
- Added option to disable logging transfers
v0.5.0
- Added option to disable Addon announcement
v0.4.1
- Fixed error when trade finished
v0.4.0
- Added Tooltips for new Addon's button
- Added multi-language support
- Fixed error in Toggling buttons that happened at Addon load
v0.3.2
- Fixed issue in LibLang that was causing error to be thrown in non english versions
v0.3.0
- Added Move buttons to move items between bank and inventory
- Added Move buttons to move items between bank and inventory
v0.2.0
- Initial ESOUI release
Optional Files (0)


Archived Files (10)
File Name
Version
Size
Uploader
Date
0.7.1
10kB
slowglass
06/28/14 02:07 AM
0.6.3
12kB
slowglass
05/23/14 12:15 PM
0.6.1
12kB
slowglass
05/20/14 11:43 AM
0.6.0
12kB
slowglass
05/18/14 02:01 PM
0.5.1
13kB
slowglass
05/17/14 07:32 AM
0.4.1
218kB
slowglass
05/09/14 03:59 PM
0.4.0
217kB
slowglass
05/08/14 05:12 PM
0.3.2
167kB
slowglass
05/07/14 04:22 PM
0.3.0
160kB
slowglass
05/06/14 03:06 PM
0.2.0
127kB
slowglass
05/04/14 01:10 AM


Post A Reply Comment Options
Unread 08/09/14, 03:32 AM  
QuadroTony
Banned
 
QuadroTony's Avatar
AddOn Author - Click to view AddOns

Forum posts: 828
File comments: 3866
Uploads: 3
this i the same addon, or with any differences?
http://www.esoui.com/downloads/info6...ed-1.3Fix.html

btw i understand right, we can stack in one second from bank to inv for example, but we cannot withdraw/deposit all items from subfilter in one second?
Report comment to moderator  
Reply With Quote
Unread 08/08/14, 11:31 AM  
slowglass
AddOn Author - Click to view AddOns

Forum posts: 8
File comments: 16
Uploads: 1
Sorry took a break from playing. Downloading patch now.
Will have the fix uploaded as soon as I can test it
Report comment to moderator  
Reply With Quote
Unread 08/08/14, 09:37 AM  
Flagrick
 
Flagrick's Avatar
AddOn Author - Click to view AddOns

Forum posts: 24
File comments: 128
Uploads: 2
File : restacker.lua

You only have to search GetBagInfo and then you have the lines ;-)

make the code replacement as it is describe below : GetBagInfo --> GetBagSize

Lua Code:
  1. --local _, numberOfItems = GetBagInfo(bagId)
  2.     local numberOfItems = GetBagSize(bagId)

There are 2 functions wich use GetBagInfo
  • Lua Code:
    1. local function RecordBag(bagId, recordAll)
  • Lua Code:
    1. local function PrintInv(bagId)

PS.
i cant give the exact lines because i have done other personal change in this addon.
But a simple find in a text file gives the lines.
Last edited by Flagrick : 08/08/14 at 10:25 AM.
Report comment to moderator  
Reply With Quote
Unread 08/07/14, 11:17 PM  
Boneidle001

Forum posts: 0
File comments: 3
Uploads: 0
Originally Posted by Flagrick
Originally Posted by PGR
Is there a 1.3 update coming for this? It's driving me nuts to play without it...

If not, is there an addon with similar functionality? (Stacked does not quite do the same thing.)
Hello,
in restacker.lua make this code replacement
Lua Code:
  1. --local _, numberOfItems = GetBagInfo(bagId)
  2.     local numberOfItems = GetBagSize(bagId)

in
Lua Code:
  1. local function RecordBag(bagId, recordAll)
and in
Lua Code:
  1. local function PrintInv(bagId)

then it should works
Thank you for the help but which lines are these to replace, I did the ones with the error in the order you put them but it has just caused the addon to vanish from the list.

Having the line numbers of which to replace would be great.
Report comment to moderator  
Reply With Quote
Unread 08/07/14, 11:37 AM  
Kalyani

Forum posts: 0
File comments: 1
Uploads: 0
Originally Posted by Flagrick
then it should works
Awesome, it works, thanks !
Report comment to moderator  
Reply With Quote
Unread 08/07/14, 03:19 AM  
Flagrick
 
Flagrick's Avatar
AddOn Author - Click to view AddOns

Forum posts: 24
File comments: 128
Uploads: 2
Originally Posted by PGR
Is there a 1.3 update coming for this? It's driving me nuts to play without it...

If not, is there an addon with similar functionality? (Stacked does not quite do the same thing.)
Hello,
in restacker.lua make this code replacement
Lua Code:
  1. --local _, numberOfItems = GetBagInfo(bagId)
  2.     local numberOfItems = GetBagSize(bagId)

in
Lua Code:
  1. local function RecordBag(bagId, recordAll)
and in
Lua Code:
  1. local function PrintInv(bagId)

then it should works
Report comment to moderator  
Reply With Quote
Unread 08/05/14, 10:43 PM  
PGR

Forum posts: 0
File comments: 3
Uploads: 0
Is there a 1.3 update coming for this? It's driving me nuts to play without it...

If not, is there an addon with similar functionality? (Stacked does not quite do the same thing.)
Report comment to moderator  
Reply With Quote
Unread 07/02/14, 02:34 PM  
Enaijo

Forum posts: 1
File comments: 9
Uploads: 0
So, any news for the guild bank?
Report comment to moderator  
Reply With Quote
Unread 05/23/14, 12:57 AM  
slowglass
AddOn Author - Click to view AddOns

Forum posts: 8
File comments: 16
Uploads: 1
API Version 100004

I have updated the version number and will update once I have tested it tonight. If you cannot wait you can download a snapshot from Github:Restacker
Report comment to moderator  
Reply With Quote
Unread 05/22/14, 05:44 AM  
OmniObsessed

Forum posts: 9
File comments: 70
Uploads: 0
Re: Re: Very nice to have

Originally Posted by slowglass
Originally Posted by OmniObsessed
I'm really excited about this add-on. It isn't working for me either by button or manually via chat.

Here's a link to a screen capture of debug output in case it helps. Notice the runes are the ones I am trying to stack.

https://www.dropbox.com/s/19k31q53tm...521_073948.png

Thanks
Looks like it is working to me. The inventory view indicates that the maximum number of items in a stack of Hade is 20. So there is no way to stack more items. Can you stack them manually
I didn't know 20 was the max... Thought it was 100. Very good... Thanks for looking into it and so quickly.
Report comment to moderator  
Reply With Quote
Unread 05/21/14, 03:55 PM  
slowglass
AddOn Author - Click to view AddOns

Forum posts: 8
File comments: 16
Uploads: 1
Re: Very nice to have

Originally Posted by OmniObsessed
I'm really excited about this add-on. It isn't working for me either by button or manually via chat.

Here's a link to a screen capture of debug output in case it helps. Notice the runes are the ones I am trying to stack.

https://www.dropbox.com/s/19k31q53tm...521_073948.png

Thanks
Looks like it is working to me. The inventory view indicates that the maximum number of items in a stack of Hade is 20. So there is no way to stack more items. Can you stack them manually
Report comment to moderator  
Reply With Quote
Unread 05/21/14, 06:54 AM  
OmniObsessed

Forum posts: 9
File comments: 70
Uploads: 0
Thumbs up Very nice to have

I'm really excited about this add-on. It isn't working for me either by button or manually via chat.

Here's a link to a screen capture of debug output in case it helps. Notice the runes are the ones I am trying to stack.

https://www.dropbox.com/s/19k31q53tm...521_073948.png

Thanks
Report comment to moderator  
Reply With Quote
Unread 05/20/14, 11:42 AM  
slowglass
AddOn Author - Click to view AddOns

Forum posts: 8
File comments: 16
Uploads: 1
Re: Down arrow

Originally Posted by Xie
Hi,

Is it possible to change the current arrow to a down arrow for "Move to bank" function ?

It would be nice
I just stole icons from the game. I did not see a down arrow in the list of icons (but there were a lot and I may have missed it)
Report comment to moderator  
Reply With Quote
Unread 05/20/14, 11:33 AM  
Xie

Forum posts: 0
File comments: 20
Uploads: 0
Down arrow

Hi,

Is it possible to change the current arrow to a down arrow for "Move to bank" function ?

It would be nice
Report comment to moderator  
Reply With Quote
Unread 05/18/14, 02:58 PM  
slowglass
AddOn Author - Click to view AddOns

Forum posts: 8
File comments: 16
Uploads: 1
Originally Posted by l3x0r
Originally Posted by slowglass
Originally Posted by l3x0r
thx for this addon! very usefull! i also like the small button it addes to the menu
but i'm missing a simple settings menu where for example you could turn off the message
Code:
Lang: en
Restacker Loaded
and i'm missing an option to allow the addon to perform in silence (so without the chat output)

please consider adding those features

Edit: I also found out that Restacker v0.4.1 includes the ".git" folder from github, maybe you could safe some bytes by removing it in the next version
I will push a version to the web site later today. (Or you can grab my development build from https://github.com/slowglass/Restacker)

thank you for the latest version everything i missed is now included
one last question:
why does this addon adds another addon named "EOSui-icons" and what does it do?
your addon seems to work fine when i disable "EOSui-icons" so why do we need it?
regards

It is just a text file I created while developing the AddOn. It does nothing and is not loaded by ESO.
I will try to remember not to include it in the next release, however it does no harm
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: