lotrointerface.com
Search Downloads


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


Post A Reply
Author Comments Comment Options
Unread 03-29-2021, 05:49 PM  
AlNeaera
The Wary

Forum posts: 0
File comments: 6
Uploads: 0
Quote:
thank for reporting this to me, i will check that asap

Homeo
Thanks, I will try again for these two specifics case with the 2.11.

There is a typo in the Woodcutter's one:
https://i.postimg.cc/FH3WQs0v/Screen...703-0-Copy.jpg

Some of them seems to be missing:
-Protectors of the Wilderland (Wells of Langflood, Update 26, i think)
-Townfolk of the Eastfold (Reputation from Rohan premium houses)
-I assume there is another one from the other Rohan housing maybe too?

https://i.postimg.cc/6QhMyjH1/Screen...0-002703-0.jpg

A mismatch for the Chicken league.

https://i.postimg.cc/3whLr5Zv/Screen...0-002506-0.jpg


https://i.postimg.cc/BQdYy1LN/Screen...506-0-Copy.jpg

Thanks !
AlNeaera is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-30-2021, 04:22 AM  
vecny.samotar
The Undying
 
vecny.samotar's Avatar

Forum posts: 20
File comments: 146
Uploads: 0
I have a question
could not add storage what is located Dom-e what does the player own?

I struggle a lot with places in all storage so I use strorage what I have in the house but the problem is that the default banker does not offer storage in the house and I do not have other services in the house like banker, craft stations so I have characters parked in Bree in crafting Hall and after a while I have stored in the storage in the house
vecny.samotar is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-30-2021, 04:53 AM  
homeopatix
The Indomitable
 
homeopatix's Avatar
Interface Author - Click to view interfaces

Forum posts: 14
File comments: 358
Uploads: 32
Quote:
I have a question
could not add storage what is located Dom-e what does the player own?

I struggle a lot with places in all storage so I use strorage what I have in the house but the problem is that the default banker does not offer storage in the house and I do not have other services in the house like banker, craft stations so I have characters parked in Bree in crafting Hall and after a while I have stored in the storage in the house
that is not possible home storage are not exposed to LUA
homeopatix is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-30-2021, 09:40 AM  
homeopatix
The Indomitable
 
homeopatix's Avatar
Interface Author - Click to view interfaces

Forum posts: 14
File comments: 358
Uploads: 32
Quote:
Thanks, I will try again for these two specifics case with the 2.11.

There is a typo in the Woodcutter's one:
https://i.postimg.cc/FH3WQs0v/Screen...703-0-Copy.jpg

Some of them seems to be missing:
-Protectors of the Wilderland (Wells of Langflood, Update 26, i think)
-Townfolk of the Eastfold (Reputation from Rohan premium houses)
-I assume there is another one from the other Rohan housing maybe too?

https://i.postimg.cc/6QhMyjH1/Screen...0-002703-0.jpg

A mismatch for the Chicken league.

https://i.postimg.cc/3whLr5Zv/Screen...0-002506-0.jpg


https://i.postimg.cc/BQdYy1LN/Screen...506-0-Copy.jpg

Thanks !
I did all the changes you told me to do, hope it is correct now

thank you very much for your support

play well

Homeo
homeopatix is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-30-2021, 06:55 PM  
AlNeaera
The Wary

Forum posts: 0
File comments: 6
Uploads: 0
Thanks.

I noticed you have also some reputations which aren't real one:
Allegiances:
Durin's Folk
The Kingdom of Gondor
The Court of Lothlórien
Hobbits of the Company
But I haven't tried it with your plugin yet, so I have no idea, but they arn't your typical reputation (i.e. Kindred/Celebrated...)

These four, I don't think there is anything anywhere:
Udûn
Dor Amarth
Talath Úrui
Agarnaith

Same for:
Burgsmen's Fellowship
Smiths' Fellowship
Builders' Fellowship

Also:
Allegiance System

The other you added: Protectors of Wilderland, Townsfolk of the Eastfold & Townsfolk of the Kingstead are spot on. Thanks!
Also I've noticed that when F11 (or whatever the key is) for toggle the HUD on/off, your MainWindow seems also to come back with the UI, even if it was not open before.

Now, I have "requests" if I may:

Can you add a command "toggle" ?
Here the hack I have I keep copying after any updates
Code:
command.lua
...
elseif ( arguments == "toggle" ) then
	if ( settings["isWindowVisible"]["isWindowVisible"] == true ) then
		AltHolicWindow:SetVisible(false);
		settings["isWindowVisible"]["isWindowVisible"] = false;
	elseif ( settings["isWindowVisible"]["isWindowVisible"] == false ) then
		AltHolicWindow:SetVisible(true);
		settings["isWindowVisible"]["isWindowVisible"] = true;
	end
...
And also a command for icon visible or not:
Code:
command.lua
...
elseif ( arguments == "icon" ) then
	if ( settings["IconVisible"]["value"] == true ) then
		MainMinimizedIcon:SetVisible(false);
		settings["IconVisible"]["value"] = false;
	elseif ( settings["IconVisible"]["value"] == false ) then
		MainMinimizedIcon:SetVisible(true);
		settings["IconVisible"]["value"] = true;
	end
...
Code:
LoadAndSave.lua
...
not settings.IconVisible or
...
IconVisible = {
 	value = true
},
...
settings["IconVisible"]["value"] = settings["IconVisible"]["value"];
If not possible, that's OK, but I loose nothing by asking

Thanks!
AlNeaera is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-31-2021, 06:02 AM  
homeopatix
The Indomitable
 
homeopatix's Avatar
Interface Author - Click to view interfaces

Forum posts: 14
File comments: 358
Uploads: 32
Quote:
If not possible, that's OK, but I loose nothing by asking
Yes it is possible, and i have done it, will be available in the next version V2.13

have a nice day

Homeo
homeopatix is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-31-2021, 09:42 AM  
AlNeaera
The Wary

Forum posts: 0
File comments: 6
Uploads: 0
Wonderful !
Thanks!

Also...
Code:
elseif ( arguments == "icon" ) then
	if ( settings["isMinimizeEnabled"]["isMinimizeEnabled"] == true ) then
		MainMinimizedIcon:SetVisible(false);
		settings["isMinimizeEnabled"]["isMinimizeEnabled"] = false;
	elseif ( settings["isMinimizeEnabled"]["isMinimizeEnabled"] == false ) then
		MainMinimizedIcon:SetVisible(true);
		settings["isMinimizeEnabled"]["isMinimizeEnabled"] = true;
	end
I think (or i don't get the command at all ), that the first SetVisible should be true and the second one false.
IF the goal is to have isMinimizeEndabled == true meaning "no icon" and the command icon is to make it appear or disappear.

And with respect to that, adding
Code:
if ( settings["isMinimizeEnabled"]["isMinimizeEnabled"] == true ) then
	self:SetVisible(false);
	settings["isMinimizeEnabled"]["isMinimizeEnabled"] = true;
else 
	self:SetVisible(true);
	settings["isMinimizeEnabled"]["isMinimizeEnabled"] = false;
end
in the MinimizedIcon.lua make the setting permanent.

Or I totally missed the point.

Anyway, thanks a lot for the quick reponse time and colossal effort
AlNeaera is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-31-2021, 10:19 AM  
homeopatix
The Indomitable
 
homeopatix's Avatar
Interface Author - Click to view interfaces

Forum posts: 14
File comments: 358
Uploads: 32
Quote:
Wonderful !
Thanks!

Also...

I think (or i don't get the command at all ), that the first SetVisible should be true and the second one false.
IF the goal is to have isMinimizeEndabled == true meaning "no icon" and the command icon is to make it appear or disappear.

And with respect to that, adding

in the MinimizedIcon.lua make the setting permanent.

Or I totally missed the point.

Anyway, thanks a lot for the quick reponse time and colossal effort
No problem

a will do those changes when the servers are back online after the update

Homeo

Edit: I have done the changes... but

i do not want the icon to be hidden at start

so when you start the plugin for the very first time the icon is displayed and if
you use the command /Alt icon it will remain hidden until you retype the command


Play well

Homeo

Last edited by homeopatix : 03-31-2021 at 02:58 PM.
homeopatix is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-31-2021, 03:39 PM  
AlNeaera
The Wary

Forum posts: 0
File comments: 6
Uploads: 0
That's fair, I never though about first time loading the plugin.

Thanks! Works well anyway and you added in the chat the effect of toggle/icon !
AlNeaera is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-04-2021, 12:43 PM  
Enduser
The Wary
 
Enduser's Avatar

Forum posts: 0
File comments: 4
Uploads: 0
Big Window Alt List problems

Love the plug-in! Just having difficulty moving from alt to alt on the big window, alt list screen. I have over 40 alts on my account and cannot find a way to scroll back to the top of the window. Would it be possible to either put a scroll bar on this page or even to have multiple columns of alt names showing when the big window is open? It would be wonderful to be able to either scroll to the top and bottom of that screen or to be able to see the action bar at the top and the info at the bottom. Thank you in advance.
Enduser is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-04-2021, 01:43 PM  
homeopatix
The Indomitable
 
homeopatix's Avatar
Interface Author - Click to view interfaces

Forum posts: 14
File comments: 358
Uploads: 32
Re: Big Window Alt List problems

Quote:
Love the plug-in! Just having difficulty moving from alt to alt on the big window, alt list screen. I have over 40 alts on my account and cannot find a way to scroll back to the top of the window. Would it be possible to either put a scroll bar on this page or even to have multiple columns of alt names showing when the big window is open? It would be wonderful to be able to either scroll to the top and bottom of that screen or to be able to see the action bar at the top and the info at the bottom. Thank you in advance.
Good idea i will think about it

Edit : it has been done, in the V2.16 update

Please have a try and let me know if it working right with your 40 Alts


Homeo

Last edited by homeopatix : 04-04-2021 at 05:58 PM.
homeopatix is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-06-2021, 11:47 AM  
Enduser
The Wary
 
Enduser's Avatar

Forum posts: 0
File comments: 4
Uploads: 0
V 2.16 change

Yes, it works very well! Thanks again!
Enduser is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-18-2021, 01:59 AM  
Cambruin
The Wary
 
Cambruin's Avatar

Forum posts: 1
File comments: 19
Uploads: 0
Hi,

I'm probably doing this all wrong, but the plugin shows up in my plugin manager of the character selection screen and is activated for all chars, but ingame it does not load.

Whichever command I use (/alt show, alt toggle, ...) always gets me the 'invalid command'

Is there a dependancy I'm missing?

Edit: these are the errors I get, which seem to indicate I'm having problems with WhereToPlay as well ;
  • ...s Online\Plugins\Homeopatix\WhereToPlay\Librarys.lua :12: Unable to resolve package "Turbine.UI.Extensions".
  • ...Rings Online\Plugins\Homeopatix\WhereToPlay\Main.lua:9: Failed to import package "Homeopatix.WhereToPlay.Librarys".
  • ...ings Online\Plugins\Homeopatix\AltHolic\Librarys.lua:7: Unable to resolve package "Turbine.UI.Extensions".
  • ...he Rings Online\Plugins\Homeopatix\AltHolic\Main.lua:9: Failed to import package "Homeopatix.AltHolic.Librarys".

Last edited by Cambruin : 04-18-2021 at 02:05 AM.
Cambruin is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-18-2021, 04:32 AM  
homeopatix
The Indomitable
 
homeopatix's Avatar
Interface Author - Click to view interfaces

Forum posts: 14
File comments: 358
Uploads: 32
Quote:
Hi,

I'm probably doing this all wrong, but the plugin shows up in my plugin manager of the character selection screen and is activated for all chars, but ingame it does not load.

Whichever command I use (/alt show, alt toggle, ...) always gets me the 'invalid command'

Is there a dependancy I'm missing?

Edit: these are the errors I get, which seem to indicate I'm having problems with WhereToPlay as well ;[list][*]...s Online\Plugins\Homeopatix\WhereToPlay\Librarys.lua :12: Unable to resolve package "Turbine.UI.Extensions".[*]...Rings Online\Plugins\Homeopatix\WhereToPlay\Main.lua:9: Failed to import package "Homeopatix.WhereToPlay.Librarys".[*]...ings Online\Plugins\Homeopatix\AltHolic\Librarys.lua:7: Unable to resolve package "Turbine.UI.Extensions".[*]...he Rings Online\Plugins\Homeopatix\AltHolic\Main.lua:9: Failed to import package "Homeopatix.AltHolic.Librarys".
Hello,

yes you need the Turbine library

It is because you need to have the Turbine package installed

you can download them at this adress : Here

or you can download them with the Compendium plugins too they are called Turbine Examples

EDIT: Let me know what happend

Last edited by homeopatix : 04-18-2021 at 06:20 AM.
homeopatix is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-18-2021, 08:31 AM  
athenakt
The Wary

Forum posts: 0
File comments: 3
Uploads: 0
Instructions on controlling alt equipment

Hello!

Your plugin is very helpful so far, but the main thing I wanted to do is to be able to fully view the stats for and manipulate my alts equipment so I can craft things for them without having to constantly switch back and forth.

Could you please detail the instructions on how to do so? I've been able to view the very basic information and can't control the equipment as you say can be done in your list of features. Thank you!
athenakt 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 06:01 PM.


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