| Updated: | 10-13-10 07:57 PM |
| Created: | 05-12-09 04:35 AM |
| Downloads: | 7,926 |
| Favorites: | 132 |
| MD5: |

File Name |
Version |
Size |
Author |
Date |
40000.1 |
5kB |
Katae |
12-08-09 02:12 AM |
|
1.1 |
5kB |
Katae |
08-14-09 02:03 AM |
|
1.0.9 |
5kB |
Katae |
08-10-09 08:06 AM |
|
1.0.7 |
5kB |
Katae |
06-16-09 01:30 AM |
|
1.0.6 |
5kB |
Katae |
06-11-09 09:07 AM |
|
1.0.5a |
5kB |
Katae |
06-06-09 01:28 PM |
|
1.0.5 |
10kB |
Katae |
06-06-09 07:04 AM |
|
1.0.4 |
9kB |
Katae |
06-02-09 11:17 PM |
|
1.0.3 |
11kB |
Katae |
05-23-09 03:36 PM |
|
1.0.2a |
11kB |
Katae |
05-22-09 05:55 PM |
|
1.0.2 |
11kB |
Katae |
05-22-09 03:05 PM |
|
1.0.1 |
4kB |
Katae |
05-19-09 04:12 AM |
|
1.0 |
3kB |
Katae |
05-18-09 06:51 AM |
![]() |
Comment Options |
|
|
|
|
Have you tried it with ark turned off? There shouldn't be a conflict...
|
|
|
|
|
|
|||
This line here (line 215) should be checking if the inversely matched stack is a partial stack and not a full stack before stacking it on top of the first partial stack that was found. Code:
if _count < _stack then found, pbag, pslot = true, _bag, _slot; break end Code:
--if _count < _stack then found, pbag, pslot = true, _bag, _slot break --end |
|||
|
|
|
|
|
|
A Kobold Labourer
Forum posts: 0
File comments: 10
Uploads: 0
|
Hey there. =)
Great add-on, most useful. I was looking through the code ... that's some scary-good code-fu you got there. ![]() One request, if possible please. Could you adjust the stacking logic so that the partial stack of any given item (if any) is the last one in the bags? If you look at the screenshot you have posted for this add-on, you can see that the mana potions become stacked as 20/2/20. It would be better if they could be 20/20/2. The reason for this is that I use your add-on in conjunction with Panda for milling herbs, and Panda fails if the first stack it encounters of a given herb has less than five items. So for example, if your add-on were to create stacks of 4/20/20, then Panda would fail due to the initial four-stack. I've asked the author of Panda if he could work around it, but he didn't seem interested. Thanks again for your time and for this great add-on! |
|
|
|
|
|
|
Bug fixed and toc updated, thanks guys.
|
|
|
|
|
|
||
f:SetScript("OnUpdate", function() -> f:SetScript("OnUpdate", function(self, arg1) In retrospect, the arg1 trick was sloppy coding on my part...
Last edited by Katae : 10-13-10 at 07:03 PM.
|
||
|
|
|
|
||
|
||
|
|
|
|
||
Code:
f:RegisterEvent'GUILDBANKFRAME_CLOSED'
f:SetScript("OnEvent", function(_, e)
-- more ldb stuff
Code:
f:RegisterEvent'GUILDBANKFRAME_CLOSED'
f:SetScript("OnEvent", function(self, event, ...)
e = event
local arg1, arg2 = ...
-- more ldb stuff
Turning on the LUA error frame, I can see an infinite number of errors regarding arithmetic on arg1. Did I misunderstand your change?
__________________
spiralofhope.com |
||
|
|
|
|
|
|
Simple fix for 4.0.1 functionality for those curious.
Line 57: Code:
f:SetScript("OnEvent", function(self, event, ...)
e = event
local arg1, arg2 = ...
|
|
|
|
|
|
||
|
||
|
|
|
|
|
|
Any chance to have this addon hide the gui icon and restack text. I don't really need to see it on my screen for it to work.
|
|
|
|
|
|
||
Thanks! |
||
|
|
|
|
|
|
A Defias Bandit
Forum posts: 2
File comments: 35
Uploads: 0
|
I've found some weird behavior when you have multiple "special" bags. For example, I have a bank alt who only holds herbs. She has 4 herb bags on her, and than some more in the bank. Every time I open my bags, it goes crazy re-organizing stuff. Same thing for my gem storage, leather storage, etc. It get's weirded out by multiple "special" bags. :-)
|
|
|
![]() |