lotrointerface.com
Search Downloads


Go Back   LoTROInterface > LotRO Patches


Post A Reply
Author Comments Comment Options
Unread 11-03-2020, 03:33 AM  
Drono
The Undying
Interface Author - Click to view interfaces

Forum posts: 47
File comments: 108
Uploads: 1
Quote:
I have decided to stop updating the plugin. Firstly because of health reasons, and secondly because I lack some knowledge of LUA programming. The list of travel skills is getting longer and longer, so you should add a scroll down in the window, because it gets a bit narrow at the bottom. And there I lack experience. Adding new journeys is not really difficult, I can continue to do so. But it doesn't make sense in my eyes, because the list has simply become too long.
If that is the case, and you are ok with it, i could upload my version, and try keep it up-to-date.
Drono is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 11-03-2020, 04:17 AM  
Thaliruth
The Wary
 
Thaliruth's Avatar
Interface Author - Click to view interfaces

Forum posts: 0
File comments: 79
Uploads: 1
Quote:
If that is the case, and you are ok with it, i could upload my version, and try keep it up-to-date.
I will have a look at her version in the course of the day. If I like it, I can add any current trips that might be missing and upload it here. As I said, adding new trips is no problem, but what bothers me is the overview window where the space at the bottom gets narrower and narrower because there is no possibility to scroll.
Thaliruth is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 11-03-2020, 04:25 AM  
Thaliruth
The Wary
 
Thaliruth's Avatar
Interface Author - Click to view interfaces

Forum posts: 0
File comments: 79
Uploads: 1
Quote:
If that is the case, and you are ok with it, i could upload my version, and try keep it up-to-date.
I took a quick look at your version. And cool you can scroll through the skills, which is perfect!

If I may I would like to use this version, I will make some adjustments for the German client and see what else is missing. I will also mention you as a programmer and I will upload version 28 this week here
Thaliruth is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 11-03-2020, 06:29 AM  
Drono
The Undying
Interface Author - Click to view interfaces

Forum posts: 47
File comments: 108
Uploads: 1
Quote:
I took a quick look at your version. And cool you can scroll through the skills, which is perfect!

If I may I would like to use this version, I will make some adjustments for the German client and see what else is missing. I will also mention you as a programmer and I will upload version 28 this week here
Feel free to use any of it, if you are interested just in the scroll, here is the only file i modified - https://www.lotrointerface.com/forum...?t=3806&page=2

I did not manage to just add the scrollbar so if i remember correctly i put the 3 columns that were there previously into one big list. The scrollbar is on left side to make it visible when viewing the options trough the built in plugin managers option.
Drono is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 11-03-2020, 08:15 AM  
Marancil
The Undefeated
 
Marancil's Avatar

Forum posts: 5
File comments: 17
Uploads: 0
Thats great guys, a successor and some new features... here I was thinking about learning how to maintain it since I use it a lot

Thanks to both...

Coming to think of it, I use the icons layout, not the scroll. Now I could wish for a location hover on the icons?

Last edited by Marancil : 11-03-2020 at 08:17 AM.
Marancil is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 11-03-2020, 10:44 AM  
Drono
The Undying
Interface Author - Click to view interfaces

Forum posts: 47
File comments: 108
Uploads: 1
Quote:
Originally Posted by Marancil
Coming to think of it, I use the icons layout, not the scroll. Now I could wish for a location hover on the icons?
Not sure what you mean. All of the modes use standard quickslot functionality and display the standard in-game tooltip.
Drono is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 11-07-2020, 06:46 AM  
Adra
The Undying
 
Adra's Avatar
Interface Author - Click to view interfaces

Forum posts: 171
File comments: 678
Uploads: 13
Hello, Annāk-khurfu is not recognized on the french client, here is the corrected line for the file IndexedDictionaryFr.lua

Code:
repLocations:AddData("Annāk-khurfu", "0x7005856F", "Retournez ą Annāk-khurfu");
I also moved it in the proper reputation paragraph.


I still fail to fix the Thorin's map, even after correcting its code to 0x7001BF91
I think the " : " is now the cause of this issue.




Regards.

Last edited by Adra : 11-07-2020 at 08:30 AM.
Adra is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 11-07-2020, 09:00 AM  
Thaliruth
The Wary
 
Thaliruth's Avatar
Interface Author - Click to view interfaces

Forum posts: 0
File comments: 79
Uploads: 1
Quote:
Hello, Annāk-khurfu is not recognized on the french client, here is the corrected line for the file IndexedDictionaryFr.lua

Code:
repLocations:AddData("Annāk-khurfu", "0x7005856F", "Retournez ą Annāk-khurfu");
I also moved it in the proper reputation paragraph.


I still fail to fix the Thorin's map, even after correcting its code to 0x7001BF91
I think the " : " is now the cause of this issue.




Regards.
Thank you! In fact for the french client I was still missing the data. Will I add and update
Thaliruth is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 11-07-2020, 10:07 AM  
Drono
The Undying
Interface Author - Click to view interfaces

Forum posts: 47
File comments: 108
Uploads: 1
@Adra not sure it will help, but there is a function to print all your trained skills names. However it is not used, you could add a command for it by modifying
Main.lua - adding this into the travelCommand:Execute (before the last elseif)
Code:
    elseif (arguments == "list") then
        travel:ListTrainedSkills();
After using "/travel list" you will get all you trained skill names printed - can locate and find the proper skill name. Warning: You might have lot of skills to print.
Drono is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 11-07-2020, 04:33 PM  
Adra
The Undying
 
Adra's Avatar
Interface Author - Click to view interfaces

Forum posts: 171
File comments: 678
Uploads: 13
@Drono

Thank you, that's an interesting command

Unfortunately, it displays the same text than the map's tootip.

"Retour : Porte de Thorin"

EDIT : I suppressed the "*" which self inserted in the copy-pasting.

Last edited by Adra : 11-07-2020 at 10:22 PM.
Adra is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 11-07-2020, 07:18 PM  
Drono
The Undying
Interface Author - Click to view interfaces

Forum posts: 47
File comments: 108
Uploads: 1
installed french version, the space between Retour and : is not really a space. string.byte("*") on it returns 194 (normal space is 32). Now, the unfortunate thing is, that afaik the plugin can read only the skill names, so it works by reading the skill names and matching them. However i did not manage to insert the "194 space" into the string.
Code:
"Retour"..string.char(194)..": Porte de Thorin"
would print "Retour?: Porte de Thorin" and when tested against the skill name - they were not equal
I also tried to use gsub("%s+", "") on the original string to strip the spaces and it returned the same "Retour?:PortedeThorin"
At least when tested against "Retour"..string.char(194)..":PortedeThorin" they were equal.
Could be possible solution to test for equality after striping the spaces, should not be problem for all skills. The game prints ? for any character that it cannot print so still would need to use string.char(194) in code.

One easier solution but also lot dirtier is just copy exactly the same string from the output of the command of my last comment. I tried it and it worked, might depend on editor used tho. I am not sure if it will work if post the string here - in case it would here it is "Retour*: Porte de Thorin"

I do not have much time to play with it more atm, there might be others that know a better workaround for this.

Edit: I did not type * in my comment and it is not there when i view it for edit . It is that weird char that seems to be displayed as * here.
Edit2: Heh now i finally figured out what that * in your comment is @Adra

Last edited by Drono : 11-07-2020 at 07:25 PM.
Drono is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 11-07-2020, 10:36 PM  
Adra
The Undying
 
Adra's Avatar
Interface Author - Click to view interfaces

Forum posts: 171
File comments: 678
Uploads: 13
Great !

@Drono

That's amazing, as you said, copy-pasting "Retour : Porte de Thorin" from the chat window's log into the plugin file file (through Notepad++) fixes the issue, despite it looks like nothing changed !

here is the patched file : https://uptobox.com/qado8czzgsfa

Thank you !

Last edited by Adra : 11-09-2020 at 05:46 AM.
Adra is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 11-08-2020, 09:46 AM  
Fisbo Baggins
The Wary

Forum posts: 1
File comments: 7
Uploads: 0
Thank you for maintaining this add-on, it is a lifesaver!

Just wanted to make you aware that (after-battle) Henneth Annun appears to be bugged - does not show in any of my toons' lists in any view option (list, carousel, icon grid, etc). even when checked. This has persisted after your most recent updates, reloading plugins, etc.

Thank you!
Fisbo Baggins is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 11-08-2020, 10:16 AM  
Thaliruth
The Wary
 
Thaliruth's Avatar
Interface Author - Click to view interfaces

Forum posts: 0
File comments: 79
Uploads: 1
Quote:
Thank you for maintaining this add-on, it is a lifesaver!

Just wanted to make you aware that (after-battle) Henneth Annun appears to be bugged - does not show in any of my toons' lists in any view option (list, carousel, icon grid, etc). even when checked. This has persisted after your most recent updates, reloading plugins, etc.

Thank you!
Yes, I noticed that with the German Client. There I have already corrected it. It is because this port has been renamed.

Please have a look at your travel skills (press K) and look for this skill and screenshots of it, or give me the exact name of the skill, then I can fix it in the English client!
Thaliruth is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 11-08-2020, 11:19 AM  
Fisbo Baggins
The Wary

Forum posts: 1
File comments: 7
Uploads: 0
Thanks so much! I'm not positive how to attach pictures here, but the current name is "Return to Henneth Annun," with the small carat over the u in Annun.
Fisbo Baggins 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 11:29 AM.


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