lotrointerface.com
Search Downloads


Go Back   LoTROInterface > LotRO Stand-Alone Plugins > Maps, coordinates & compasses


Post A Reply
Author Comments Comment Options
Unread 08-05-2020, 10:57 AM  
DLevel
The Undefeated
Interface Author - Click to view interfaces

Forum posts: 5
File comments: 21
Uploads: 3
Update U27.2

Lunarwtr , Started a post continuing tread ServerName? and no reply yet.

I have zip file Patch I used and tested for Waypoint 1.6. Should I sent it to you or upload as Patch?
DLevel is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 08-05-2020, 10:39 AM  
DLevel
The Undefeated
Interface Author - Click to view interfaces

Forum posts: 5
File comments: 21
Uploads: 3
changes to /loc

Yes,
"you are on <Crickhollow> server <server number> at " ……………………………………..
The new info is (ServerName or World) and( ServerNumber).

I could manually use as long as I didn't leave the zone
for instance. I added "you are on Crickhollow server 55.. apply and would work till the 55 Server number changes to 16... or such as. I tried in different world and would not work..
I did reapply a workaround to the previous patch and did test on waypoint 1.6. and tested on other worlds server.
DLevel is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 08-05-2020, 08:15 AM  
lunarwtr
The Undying
 
lunarwtr's Avatar
Interface Author - Click to view interfaces

Forum posts: 121
File comments: 344
Uploads: 11
Re: update U27.2

Quote:
Changes to /loc by update 27.2
Waypoint is not working.
Reverted back to Version 1.5 with patch from Hyoss U2.62
and waypoint will work.
Did they change the output of loc again??
lunarwtr is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 08-05-2020, 01:10 AM  
DLevel
The Undefeated
Interface Author - Click to view interfaces

Forum posts: 5
File comments: 21
Uploads: 3
update U27.2

Changes to /loc by update 27.2
Waypoint is not working.
Reverted back to Version 1.5 with patch from Hyoss U2.62
and waypoint will work.
DLevel is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 06-29-2020, 04:03 PM  
Randalljafo
The Wary

Forum posts: 0
File comments: 4
Uploads: 0
Re: Waypoint

That did it.
Thank you so very much Sir. I was about to start pulling my hair out.
Randalljafo is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 06-29-2020, 02:39 PM  
Thurallor
The Undying
 
Thurallor's Avatar
Interface Author - Click to view interfaces

Forum posts: 202
File comments: 457
Uploads: 20
Re: Waypoint

Quote:
I can't get this to work. I put in the coordinates but when I try to update the arrow position it doesn't update. It gives me the following chat output:

You are on server 28 at r1 lx933 ly952 ox119.16 oy8.62 oz381.14 h18.3. Game timestamp 414637315.884.

I've read everything here and tried all that I could, but nothing seems to work.

Can you help me get this to work?
It stopped working last week, due to a change in the game client. You will need to apply the patch linked above.
Thurallor is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 06-29-2020, 12:01 PM  
Randalljafo
The Wary

Forum posts: 0
File comments: 4
Uploads: 0
Waypoint

I can't get this to work. I put in the coordinates but when I try to update the arrow position it doesn't update. It gives me the following chat output:

You are on server 28 at r1 lx933 ly952 ox119.16 oy8.62 oz381.14 h18.3. Game timestamp 414637315.884.

I've read everything here and tried all that I could, but nothing seems to work.

Can you help me get this to work?

Regards,
Randall
Randalljafo is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 06-21-2020, 02:43 PM  
Tappo
The Wary
 
Tappo's Avatar

Forum posts: 2
File comments: 22
Uploads: 0
Re: Update 26.2.2 (Jun 16 2020) altered /loc format FIX

I believe a better fix would be changing that line
from:
Code:
local matchprefix = 'You are at: ';
to:
Code:
local matchprefix = 'You are on server %d+ at ';
Tappo is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 06-19-2020, 12:23 AM  
akrapture
The Wary

Forum posts: 0
File comments: 1
Uploads: 0
Update 26.2.2 (Jun 16 2020) altered /loc format FIX

For people using the English version of the client the fix is very simple and is described here. For people using other languages (fr/de) follow along and find the code described here and it should be fairly obvious how to fix the parsing strings.

Locate the LOTRO plugin folder and from there drill down to the the Lunawater\Waypoint folder. In that folder open the file Waypoint.lua. Search for and find the phrase "You are at: " or alternatively simply jump to line 329.

Change the phrase "You are at: " to simply " at " (leave the spaces).

Save the file and restart the LOTRO client or otherwise reload the Waypoint plugin.

Enjoy.
akrapture is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 11-11-2019, 06:15 PM  
vecny.samotar
The Undying
 
vecny.samotar's Avatar

Forum posts: 20
File comments: 146
Uploads: 0
how do I move the arrow to another instead of the screen?

Further pises in KNOWN PROBLEMS I quote: "it will cause some spam. I suggest you create a new chat tab vs using a general chat so you don't have to see the output / loc"

I may be stupid but what should I mark in the new tab so I do not have the spam

Last edited by vecny.samotar : 11-11-2019 at 06:43 PM.
vecny.samotar is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 08-25-2018, 01:54 PM  
Thaliruth
The Wary
 
Thaliruth's Avatar
Interface Author - Click to view interfaces

Forum posts: 0
File comments: 79
Uploads: 1
Quote:
Well, I don't know why it's failing. Maybe Garan or Lunarwater can weigh in on the topic.

But I have a brute-force fix that should solve the problem, whatever the cause.

At line 42, find the following code

Code:
function tonum(val) 
    if locale ~= 'en' then
        return tonumber((string.gsub(val,"%.",",")))
    else
        return tonumber(val);
    end
end
and replace it with the following code

Code:
function tonum(val) 
    return tonumber(val) or tonumber((string.gsub(val,"%.",","))) or tonumber((string.gsub(val,",",".")));
end
WOW madness it works again
Thank you very much for this solution
Thaliruth is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 08-25-2018, 01:01 PM  
Thurallor
The Undying
 
Thurallor's Avatar
Interface Author - Click to view interfaces

Forum posts: 202
File comments: 457
Uploads: 20
Well, I don't know why it's failing. Maybe Garan or Lunarwater can weigh in on the topic.

But I have a brute-force fix that should solve the problem, whatever the cause.

At line 42, find the following code

Code:
function tonum(val) 
    if locale ~= 'en' then
        return tonumber((string.gsub(val,"%.",",")))
    else
        return tonumber(val);
    end
end
and replace it with the following code

Code:
function tonum(val) 
    return tonumber(val) or tonumber((string.gsub(val,"%.",","))) or tonumber((string.gsub(val,",",".")));
end

Last edited by Thurallor : 08-25-2018 at 01:16 PM.
Thurallor is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 08-25-2018, 12:40 PM  
Thaliruth
The Wary
 
Thaliruth's Avatar
Interface Author - Click to view interfaces

Forum posts: 0
File comments: 79
Uploads: 1
I already had that. Have LOTRO completely reinstalled. Without plugins, then only the Plugin WayPoint installed, and it made no difference.
Thaliruth is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 08-25-2018, 12:36 PM  
Thurallor
The Undying
 
Thurallor's Avatar
Interface Author - Click to view interfaces

Forum posts: 202
File comments: 457
Uploads: 20
Still a mystery. My current best guess is that another plugin is redefining the tonumber() function, although I didn't think that was possible unless they share the same script state ("Waypoint").

Can you please try removing everything else from the Plugins/ folder, leaving only the lunarwtr/ folder? Then login and try again.

Last edited by Thurallor : 08-25-2018 at 12:37 PM.
Thurallor is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 08-25-2018, 03:18 AM  
Thaliruth
The Wary
 
Thaliruth's Avatar
Interface Author - Click to view interfaces

Forum posts: 0
File comments: 79
Uploads: 1
I like to help. Have made the changes.

Code:
/way target 25.1S 48.8W
Output:
Code:
locale = de
Failed to convert: '48.8'
... ings Online \ Plugins \ Lunarwater \ Waypoint \ Waypoint.lua: 322: attempt to perform arithmetic on local 'x' (a nil value)

Last edited by Thaliruth : 08-25-2018 at 03:19 AM.
Thaliruth 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:05 AM.


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