lotrointerface.com
Search Downloads


Go Back   LoTROInterface > LotRO Stand-Alone Plugins > Bags, Bank & Inventory


Post A Reply
Author Comments Comment Options
Unread 04-27-2013, 11:25 AM  
Elg
The Wary

Forum posts: 0
File comments: 5
Uploads: 0
Re: Re: Minimum width window - Eyeinfinity setup

Hi

Worked a treat - thanks!
Elg is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-24-2013, 03:40 PM  
Garan
The Undying
 
Garan's Avatar
Interface Author - Click to view interfaces

Forum posts: 341
File comments: 981
Uploads: 20
Re: Minimum width window - Eyeinfinity setup

Quote:
Originally Posted by Elg
Hi

I'm running an eyeinfinity setup so have an effective resolution of 5760x1080.

I've been a longtime altinventory user, but spotted a problem now I'm running eyeinfinity I've spotted that there seems to be a minimum width window setting based on screen resolution which means my AltInventory window is very wide on the screen (a full inventory window is only one and a bit rows of small icons)

Is this a setting that can be changed?

thanks
This is a bug. I will have it fixed in the next version but that won't be published for quite a while so, to fix your local copy, you can edit the file "main.lua" in the Plugins\GaranStuff\AltInventory folder. Find the following 10 lines starting at line 217 (you can use Ctrl+G in notepad to jump to a specific line)
Code:
if Settings.panelMinWidth==nil then
 Settings.panelMinWidth=406/displayWidth;
else
 Settings.panelMinWidth=euroNormalize(Settings.panelMinWidth);
end
if Settings.panelMinHeight==nil then
 Settings.panelMinHeight=114/displayHeight;
else
 Settings.panelMinHeight=euroNormalize(Settings.panelMinHeight);
end
and replace them with
Code:
 Settings.panelMinWidth=406/displayWidth;
 Settings.panelMinHeight=114/displayHeight;
This forces the minimum width and height to the correct values since they should not have been included in the settings that are saved in the pluginData file.

Last edited by Garan : 04-24-2013 at 03:41 PM.
Garan is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-24-2013, 02:11 PM  
Elg
The Wary

Forum posts: 0
File comments: 5
Uploads: 0
Minimum width window - Eyeinfinity setup

Hi

I'm running an eyeinfinity setup so have an effective resolution of 5760x1080.

I've been a longtime altinventory user, but spotted a problem now I'm running eyeinfinity I've spotted that there seems to be a minimum width window setting based on screen resolution which means my AltInventory window is very wide on the screen (a full inventory window is only one and a bit rows of small icons)

Is this a setting that can be changed?

thanks
Elg is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-16-2013, 10:48 PM  
Garan
The Undying
 
Garan's Avatar
Interface Author - Click to view interfaces

Forum posts: 341
File comments: 981
Uploads: 20
AltViewer ver 0.99

The initial release of AltViewer is now available. This version only includes the Rep, Traits, Stats and Notes panels from AltInventory 2.x. The Recipes, Deeds and Quests panels are still being converted and should be available, um, well, sometime...
Garan is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-29-2013, 01:23 PM  
Garan
The Undying
 
Garan's Avatar
Interface Author - Click to view interfaces

Forum posts: 341
File comments: 981
Uploads: 20
Just a quick status report for those wondering about the panels that are moving to AltViewer:

The AltViewer framework is nearly complete - that is, the main window controls and basic options settings as well as the ability to conditionally load and control plugin panels. The Notes panel has been successfully migrated as a simple test case. The Rep, Stats and Traits panels are nearly done (although the latest GetAttributes() method still has issues). They are fairly easy since very little needed to be changed from the version in AltInventory.

The Equipped Items panel may be scrapped or rewritten from scratch - the panel is of limited use and has significant restrictions due to the fact that there is no programatic way to acquire a generic item id from an Item (this can currently only be derived from the Shortcut when dragging an item to a Quickslot and even then many items only include an instance specific ID which is invalid and useless when used with other characters).

The bad news is that the Recipe, Deed and Quest panels will not be implemented for quite a while. I've run into more problems resolving the unknown recipes, especially for DE and FR clients - there is no reliable way to match known recipes to the complete database of all recipes (the only exposed criteria is Name and that is not unique and doesn't always match between the item the recipe is learned from and the recipe as it shows in the Crafting UI. Yech.

So, while progress is being made, there are still some significant hurdles. I will likely publish a limited version with only the Rep, Traits, Stats, and Notes panels, possibly as soon as the middle of next month but I'm not making any promises. Hopefully the Recipes panel should follow the month after - that is, sometime mid May. The Deed and Quest panels will likely be last with no estimated publication date available.

Last edited by Garan : 03-29-2013 at 01:24 PM.
Garan is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-11-2013, 07:51 PM  
Stever1388
The Undying
Interface Author - Click to view interfaces

Forum posts: 33
File comments: 122
Uploads: 10
Quote:
AltInventory is already as minimally invasive as possible. The conflict you are seeing only occurs if you save settings or unload the plugin. Ironically, it is actually Hugebag which is forcing a shared resource to be disabled with no option to share the resource. AltInventory will allow the built-in resource to be displayed or not and only forces it to be displayed when the plugin unloads (which Hugebag also does) or the user saves settings with the Replace Bags option turned off to prevent users from accidentally disabling their built-in bags when no alternative is loaded. To avoid this, simply set the Replace Bags option in AltInventory (or just reload Hugebag any time you save settings in AltInventory). In any case, once reloaded after saving settings, the plugins will run just fine together.
Ah, I felt like it was only doing it part of the time but I couldn't figure out why (but I've been messing around with AltInventory today so I've been doing a lot of saving settings). Thanks!
Stever1388 is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-11-2013, 07:04 PM  
Garan
The Undying
 
Garan's Avatar
Interface Author - Click to view interfaces

Forum posts: 341
File comments: 981
Uploads: 20
Quote:
As someone already pointed out, the icon appears when it shouldn't (when you load up the plugin it will be up even if you select it not to), and hitting Esc brings it back too.

Also, could you fix the plugin to not overwrite other bag plugins? I use Hugebag as a replacement to the Turbine ones, but when I load AltInventory and don't use it for bag replacement, it causes the old bags and Hugebag to show up when I hit the I key.

It's great having AltInventory back though, really missed it the past few months, and I haven't had a crash from it either, so great work. I do kind of miss some of the other tabs (the Notes tab and crafting tabs particularly) but I can live without them. Thanks!
The icon issue will be addressed in the next update.

AltInventory is already as minimally invasive as possible. The conflict you are seeing only occurs if you save settings or unload the plugin. Ironically, it is actually Hugebag which is forcing a shared resource to be disabled with no option to share the resource. AltInventory will allow the built-in resource to be displayed or not and only forces it to be displayed when the plugin unloads (which Hugebag also does) or the user saves settings with the Replace Bags option turned off to prevent users from accidentally disabling their built-in bags when no alternative is loaded. To avoid this, simply set the Replace Bags option in AltInventory (or just reload Hugebag any time you save settings in AltInventory). Although, using the Replace Bags option in AltInventory will make the plugin appear with the 'I' key (or whichever key you have the bags bound to). In any case, once reloaded after saving settings, the plugins will run just fine together.

Last edited by Garan : 03-12-2013 at 09:07 AM.
Garan is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-11-2013, 06:25 PM  
Stever1388
The Undying
Interface Author - Click to view interfaces

Forum posts: 33
File comments: 122
Uploads: 10
As someone already pointed out, the icon appears when it shouldn't (when you load up the plugin it will be up even if you select it not to), and hitting Esc brings it back too.

Also, could you fix the plugin to not overwrite other bag plugins? I use Hugebag as a replacement to the Turbine ones, but when I load AltInventory and don't use it for bag replacement, it causes the old bags and Hugebag to show up when I hit the I key.

It's great having AltInventory back though, really missed it the past few months, and I haven't had a crash from it either, so great work. I do kind of miss some of the other tabs (the Notes tab and crafting tabs particularly) but I can live without them. Thanks!
Stever1388 is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 02-26-2013, 07:29 AM  
Garan
The Undying
 
Garan's Avatar
Interface Author - Click to view interfaces

Forum posts: 341
File comments: 981
Uploads: 20
Re: Re: Re: Yay for new version, bug and feature request.

Quote:
Originally Posted by RJFerret
Quote:
Originally Posted by Garan
I can reinstate the toggle option - it was actually excluded as an oversight.
Sweet, wow and already changed, downloaded and appreciated! :-)

So, this isn't a bug, more an anomaly. If one chooses to hide the icon (now that the toggle is available, the icon is redundant to me), it doesn't show upon unchecking "show icon when minimized". However it reappears later on it's own. It doesn't go away by using /altinventory toggle. It only will go away if you click it and subsequently close the window.

One of the events apparently bringing it back, is additions to inventory, whether purchasing something at an NPC, or crafting something, any new addition to the bag, results in the icon making a reappearance!

(Was a bit of a fun puzzle to figure out, because I woudn't notice it's return, until later, "when did that come back?") Heh. There might be other conditions too, as I noticed it back when I logged off without inventory additions.

No biggy, certainly not a priority, just an FYI. :-) Again, thank you SO much for all your diligence, contributions and efforts on our behalf.
Thanks for the feedback.

That icon issue is actually caused in several places. The "Esc" and "F12" events among other things. I will get it fixed for the next update. And, fwiw, as much as I dislike them, it really is a *cough* b u g

Last edited by Garan : 02-26-2013 at 08:36 AM.
Garan is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 02-26-2013, 01:03 AM  
RJFerret
The Wary

Forum posts: 0
File comments: 32
Uploads: 0
Re: Re: Yay for new version, bug and feature request.

Quote:
Originally Posted by Garan
I can reinstate the toggle option - it was actually excluded as an oversight.
Sweet, wow and already changed, downloaded and appreciated! :-)

So, this isn't a bug, more an anomaly. If one chooses to hide the icon (now that the toggle is available, the icon is redundant to me), it doesn't show upon unchecking "show icon when minimized". However it reappears later on it's own. It doesn't go away by using /altinventory toggle. It only will go away if you click it and subsequently close the window.

One of the events apparently bringing it back, is additions to inventory, whether purchasing something at an NPC, or crafting something, any new addition to the bag, results in the icon making a reappearance!

(Was a bit of a fun puzzle to figure out, because I woudn't notice it's return, until later, "when did that come back?") Heh. There might be other conditions too, as I noticed it back when I logged off without inventory additions.

No biggy, certainly not a priority, just an FYI. :-) Again, thank you SO much for all your diligence, contributions and efforts on our behalf.

Last edited by RJFerret : 02-26-2013 at 01:10 AM.
RJFerret is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 02-24-2013, 09:25 PM  
Garan
The Undying
 
Garan's Avatar
Interface Author - Click to view interfaces

Forum posts: 341
File comments: 981
Uploads: 20
Re: Yay for new version, bug and feature request.

Quote:
Originally Posted by RJFerret
Thank you SO much for your efforts on our behalf! :-)

"...ings Online\Plugins\GaranStuff\AltInventory\Main.lua:10 60: Invaild member function call."

That occurred when I click Cancel on the Options panel (close gadget works fine). (Line 1060, shouldn't be displaying a space between the 10 and 60 that's not in the editor.)

Might /altinventory toggle be reinstated so one quickslot button or shortcut key may display/remove it rather than needing to take up two slots/keys with show and also hide?
EEEK! Two bug reports in one night

hehe. I guess I never actually clicked Cancel on the Options panel.

I can reinstate the toggle option - it was actually excluded as an oversight. Since ver 3.0 was a complete rewrite I started with the generic template I use for plugins which doesn't include the toggle option. It should be in ver 3.03 which will have the bug fixes for Bill's bug as well as yours.
Garan is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 02-24-2013, 09:10 PM  
RJFerret
The Wary

Forum posts: 0
File comments: 32
Uploads: 0
Yay for new version, bug and feature request.

Thank you SO much for your efforts on our behalf! :-)

"...ings Online\Plugins\GaranStuff\AltInventory\Main.lua:10 60: Invaild member function call."

That occurred when I click Cancel on the Options panel (close gadget works fine). (Line 1060, shouldn't be displaying a space between the 10 and 60 that's not in the editor.)

Might /altinventory toggle be reinstated so one quickslot button or shortcut key may display/remove it rather than needing to take up two slots/keys with show and also hide?

Last edited by RJFerret : 02-24-2013 at 09:12 PM.
RJFerret is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 02-24-2013, 06:46 PM  
Garan
The Undying
 
Garan's Avatar
Interface Author - Click to view interfaces

Forum posts: 341
File comments: 981
Uploads: 20
Re: bug in 3.02

Quote:
Originally Posted by magill
...ings Online\Plugins\GaranStuff\AltInventory\Main.lua:22 43: attempt to index field 'Qty' (a nil value)
...ings Online\Plugins\GaranStuff\AltInventory\Main.lua:22 43: attempt to index field 'Qty' (a nil value)
...ings Online\Plugins\GaranStuff\AltInventory\Main.lua:22 43: attempt to index field 'Qty' (a nil value)
...ings Online\Plugins\GaranStuff\AltInventory\Main.lua:12 91: attempt to index field 'Qty' (a nil value)
...ings Online\Plugins\GaranStuff\AltInventory\Main.lua:22 43: attempt to index field 'Qty' (a nil value)
[Regional] Pantasio: 'WTB Halbred of 3age lvl80 or lvl81'
...ings Online\Plugins\GaranStuff\AltInventory\Main.lua:22 43: attempt to index field 'Qty' (a nil value)


Occurred "spontaneously" while detaching mail items... a recipe and a stack of fused relics.

Also, I note that the "separators" are no longer available in the display. (using center display option)

selected options: Current bags display total items and show Icon when minimized.

v 3.02
Thanks for the bug report.

As to the "separators", I mentioned in an earlier post that I was experimenting with the built-in listbox columns and there is no way to span columns so row separators are not possible. I will probably be changing this back to creating my own rows to re-enable row separators in the future.
Garan is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 02-24-2013, 06:21 PM  
magill
The Undying
 
magill's Avatar

Forum posts: 85
File comments: 165
Uploads: 0
bug in 3.02

...ings Online\Plugins\GaranStuff\AltInventory\Main.lua:22 43: attempt to index field 'Qty' (a nil value)
...ings Online\Plugins\GaranStuff\AltInventory\Main.lua:22 43: attempt to index field 'Qty' (a nil value)
...ings Online\Plugins\GaranStuff\AltInventory\Main.lua:22 43: attempt to index field 'Qty' (a nil value)
...ings Online\Plugins\GaranStuff\AltInventory\Main.lua:12 91: attempt to index field 'Qty' (a nil value)
...ings Online\Plugins\GaranStuff\AltInventory\Main.lua:22 43: attempt to index field 'Qty' (a nil value)
[Regional] Pantasio: 'WTB Halbred of 3age lvl80 or lvl81'
...ings Online\Plugins\GaranStuff\AltInventory\Main.lua:22 43: attempt to index field 'Qty' (a nil value)


Occurred "spontaneously" while detaching mail items... a recipe and a stack of fused relics.

Also, I note that the "separators" are no longer available in the display. (using center display option)

selected options: Current bags display total items and show Icon when minimized.

v 3.02
magill is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 02-21-2013, 06:51 PM  
Garan
The Undying
 
Garan's Avatar
Interface Author - Click to view interfaces

Forum posts: 341
File comments: 981
Uploads: 20
Re: Equiped items

Quote:
Originally Posted by rawrbeast
It says i should be able to see equipped items but I cant see it its a hassle to know which crafting items i should make for my alts
Unfortunately, due to a bug introduced into the Lua client by Turbine with the release of RoR, AltInventory had to be broken into separate components to avoid crashing the game when logging out. The inventory functionality of the plugin (bags, vault, shared storage) is available as version 3.0. The item tracking functionality was spun off as a separate plugin, ItemTracker. The wallet view functionality was incorporated into the Wallet plugin. The other panels, including the Equipped Items panel will be available in a new plugin, AltViewer which will be published in a couple of months.

There is also a limitation on the information exposed to Lua for Equipped Items which prevents producing a pop-up tooltip window for the equipped items so the equipped items panel was significantly limited. I hope to find a way around this limitation for AltViewer but it remains to be seen whether a practical and efficient solution can be achieved. I do not at this time have an expected publication date for AltViewer.
Garan is offline Report comment to moderator   Reply With Quote Reply With Quote
Post A Reply

 
Category Jump:
Search this Category:
 

All times are GMT -5. The time now is 02:41 PM.


Our Network
EQInterface | EQ2Interface | Minion | WoWInterface | ESOUI | LoTROInterface | MMOUI | Swtorui