lotrointerface.com
Search Downloads


Go Back   LoTROInterface > LotRO Stand-Alone Plugins > Other


Post A Reply
Author Comments Comment Options
Unread 01-27-2023, 01:14 PM  
Valdacil
The Undying
 
Valdacil's Avatar
Interface Author - Click to view interfaces

Forum posts: 26
File comments: 138
Uploads: 2
Feature request: Option to filter Scaling quests out. I frequently either check a specific level range or a zone to make sure I completed everything there before moving on. But it also shows all the scaling quests in those searches. So I might have 4 pages of scaling quests to find the 2 at level quests I missed.
Valdacil is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 01-29-2023, 07:16 PM  
lunarwtr
The Undying
 
lunarwtr's Avatar
Interface Author - Click to view interfaces

Forum posts: 121
File comments: 344
Uploads: 11
Version 2.3 should address
  • Fixed bug when import was attempted in French & German LoTRO client
  • Fixed bug with certain progression quests not being shown correctly
  • Sorting all level range filters numerically
  • Adding filter for non-scaling quests
lunarwtr is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 01-30-2023, 02:00 PM  
modtek
The Wary

Forum posts: 0
File comments: 3
Uploads: 0
multilang databases?

Hello! What about the idea of having databases not only in English, but also in German and French, not only for the plugin's interface? Perhaps it will be useful to leave the English names next to the localized for easier search outside the game, but also quests/deeds/items descriptions/names should be taken localized for the appropriate language.

It would be useful to have similar bases in-game via plugin, to have several sources of info independent of each other in addition to web-based the lotro-wiki and standalone program Lotro Companion.
modtek is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 01-30-2023, 02:31 PM  
lunarwtr
The Undying
 
lunarwtr's Avatar
Interface Author - Click to view interfaces

Forum posts: 121
File comments: 344
Uploads: 11
Re: multilang databases?

Quote:
Hello! What about the idea of having databases not only in English, but also in German and French, not only for the plugin's interface? Perhaps it will be useful to leave the English names next to the localized for easier search outside the game, but also quests/deeds/items descriptions/names should be taken localized for the appropriate language.

It would be useful to have similar bases in-game via plugin, to have several sources of info independent of each other in addition to web-based the lotro-wiki and standalone program Lotro Companion.
if there is interest in the quest data for other locales, it can be done, but would constitute a great deal of work to do it efficiently (memory wise).
lunarwtr is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 01-30-2023, 05:00 PM  
Valdacil
The Undying
 
Valdacil's Avatar
Interface Author - Click to view interfaces

Forum posts: 26
File comments: 138
Uploads: 2
Quote:
Version 2.3 should address
  • Fixed bug when import was attempted in French & German LoTRO client
  • Fixed bug with certain progression quests not being shown correctly
  • Sorting all level range filters numerically
  • Adding filter for non-scaling quests
Woot! Thanks for adding the non-scaling quest filter. I'll check it out tonight!
Valdacil is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-31-2023, 11:10 PM  
SidTheMadHatter
The Wary
 
SidTheMadHatter's Avatar

Forum posts: 4
File comments: 9
Uploads: 0
Having an issue importing data

I've successfully downloaded and installed Compendium. I've successfully imported my characters into Companion (full import, imported everything successfully)

When I run the "ImportCompletionfromLotroCompanion" it finds my accounts, but says "Did not find any LOTRO Compantion characters, or none found could be imported!"

I'm not sure what to do here.
SidTheMadHatter is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-01-2023, 08:20 AM  
lunarwtr
The Undying
 
lunarwtr's Avatar
Interface Author - Click to view interfaces

Forum posts: 121
File comments: 344
Uploads: 11
Re: Having an issue importing data

Quote:
I've successfully downloaded and installed Compendium. I've successfully imported my characters into Companion (full import, imported everything successfully)

When I run the "ImportCompletionfromLotroCompanion" it finds my accounts, but says "Did not find any LOTRO Compantion characters, or none found could be imported!"

I'm not sure what to do here.
it is looking for your companion data in

%USERPROFILE%\.lotrocompanion\data\characters (I am assuming windows)

if you set something different in companion settings, then it will not find it.

Last edited by lunarwtr : 04-01-2023 at 08:21 AM.
lunarwtr is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-01-2023, 08:52 AM  
SidTheMadHatter
The Wary
 
SidTheMadHatter's Avatar

Forum posts: 4
File comments: 9
Uploads: 0
Re: Re: Having an issue importing data

Quote:
it is looking for your companion data in

%USERPROFILE%\.lotrocompanion\data\characters (I am assuming windows)

if you set something different in companion settings, then it will not find it.
Thank you, that explains it. Unfortunately I install everything onto the D drive. C is a small SSD and is only the OS (and the %USERPROFILE% directory is there)...

I even store all documents, pictures, etc. on an external drive.

Last edited by SidTheMadHatter : 04-01-2023 at 08:53 AM.
SidTheMadHatter is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-01-2023, 10:48 AM  
lunarwtr
The Undying
 
lunarwtr's Avatar
Interface Author - Click to view interfaces

Forum posts: 121
File comments: 344
Uploads: 11
Re: Re: Re: Having an issue importing data

Quote:
Thank you, that explains it. Unfortunately I install everything onto the D drive. C is a small SSD and is only the OS (and the %USERPROFILE% directory is there)...

I even store all documents, pictures, etc. on an external drive.
Try opening ImportCompletionFromLotroCompanion.hta in notepad. Find the line that says..

Code:
strHomeFolder = oShell.ExpandEnvironmentStrings("%USERPROFILE%")
and change it to the parent folder location of where you installed.. Should be just the folder above ".lotrocompanion"

Code:
strHomeFolder = "D:\<location you installed>"
lunarwtr is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-04-2023, 09:27 AM  
SidTheMadHatter
The Wary
 
SidTheMadHatter's Avatar

Forum posts: 4
File comments: 9
Uploads: 0
Re: Re: Re: Re: Having an issue importing data

Try opening ImportCompletionFromLotroCompanion.hta in notepad. Find the line that says..

Code:
strHomeFolder = oShell.ExpandEnvironmentStrings("%USERPROFILE%")
and change it to the parent folder location of where you installed.. Should be just the folder above ".lotrocompanion"

Code:
strHomeFolder = "D:\<location you installed>"
Thank you for the quick support!
SidTheMadHatter is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-08-2023, 05:54 PM  
ss2180
The Wary

Forum posts: 0
File comments: 1
Uploads: 0
Issues with quest pre-reqs

I am having issues using this addon at the moment. When viewing a quests 'Prereq(s)' and 'Next Quest(s)', the quests that are shown are completely unrelated.

For example the quest, Intro: A Plea for Aid has the prerequisite of
1. Interlude: Many Worries a level 85 quest. The next quest is said to be 'Dimming the summit' a level 66 quest.

All the other information about the quest is accurate, e.g. level, xp, rewards, points of interest.

This is my first time using the addon, I thought I'd mention it as I'm not sure if this is a known issue or if I'm doing something wrong.
ss2180 is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-08-2023, 09:32 PM  
lunarwtr
The Undying
 
lunarwtr's Avatar
Interface Author - Click to view interfaces

Forum posts: 121
File comments: 344
Uploads: 11
Re: Issues with quest pre-reqs

Doesn't sound right at all. I wonder if it broke on last release or if it's been that way for a while

Ty for reporting

Last edited by lunarwtr : 04-08-2023 at 09:32 PM.
lunarwtr is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-13-2023, 02:57 PM  
innok
The Wary

Forum posts: 0
File comments: 2
Uploads: 0
Cardolan quest Mission: Infiltration

I see in Compendium Cardolan quest "Mission: Infiltration". What is the quest? No information at lotrowiki.
innok is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-14-2023, 10:34 AM  
lunarwtr
The Undying
 
lunarwtr's Avatar
Interface Author - Click to view interfaces

Forum posts: 121
File comments: 344
Uploads: 11
Re: Cardolan quest Mission: Infiltration

Quote:
I see in Compendium Cardolan quest "Mission: Infiltration". What is the quest? No information at lotrowiki.
The quest data has a flag of hidden.. I do not check for that so my best guess would be that those need filtered out of what makes it into Compendium.


There are two quests that appear with that name.. one says its autobestowed and is flagged as an instance. The other is a "Mission: Before the Shadow" type quest given by Hithriel.
lunarwtr is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 04-14-2023, 11:12 AM  
innok
The Wary

Forum posts: 0
File comments: 2
Uploads: 0
Re: Re: Cardolan quest Mission: Infiltration

Is it possible to somehow sort the quests so that those that are no longer available in the game are not displayed?

Last edited by innok : 04-14-2023 at 11:13 AM.
innok 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:44 AM.


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