lotrointerface.com
Search Downloads


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


Post A Reply
Author Comments Comment Options
Unread 06-28-2016, 04:28 PM  
Davidm82
The Wary

Forum posts: 0
File comments: 1
Uploads: 0
all I get is target needed on the waypoint plugin

all I get is target needed on the waypoint arrow on the waypoint plugin
Davidm82 is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 08-01-2015, 09:26 AM  
lunarwtr
The Undying
 
lunarwtr's Avatar
Interface Author - Click to view interfaces

Forum posts: 121
File comments: 344
Uploads: 11
Quote:
I like it too, but found a small bug.

With German client all Coordinates in the West are translated to O =Osten (German for East). Found the bug in row 248 of Waypoint.lua, you have to translate E to O, not W to O.

By the way: French for East is Est, so you must not translate E to O for the French client (line 250+251), just for the German one.

I hope my fix is correct?:

Code:
function Waypoint:CoordinateToString( coor )
   	
   	local yd = 'N';
   	if coor.y < 0 then yd = 'S' end;
   	local xd = 'E';
   	if coor.x < 0 then xd = 'W' end;
   	
   	if locale == 'de' and xd == 'E' then
   		xd = 'O';
   	end;
   	
   	return math.abs(coor.y) .. yd  .. ', ' .. math.abs(coor.x) .. xd;
end
Thank you for reporting the bug and a fix!! Very kind of you. I will upload as soon as I can.
lunarwtr is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 07-19-2015, 06:26 PM  
Venogorn
The Wary

Forum posts: 1
File comments: 32
Uploads: 0
I like it too, but found a small bug.

With German client all Coordinates in the West are translated to O =Osten (German for East). Found the bug in row 248 of Waypoint.lua, you have to translate E to O, not W to O.

By the way: French for East is Est, so you must not translate E to O for the French client (line 250+251), just for the German one.

I hope my fix is correct?:

Code:
function Waypoint:CoordinateToString( coor )
   	
   	local yd = 'N';
   	if coor.y < 0 then yd = 'S' end;
   	local xd = 'E';
   	if coor.x < 0 then xd = 'W' end;
   	
   	if locale == 'de' and xd == 'E' then
   		xd = 'O';
   	end;
   	
   	return math.abs(coor.y) .. yd  .. ', ' .. math.abs(coor.x) .. xd;
end
Venogorn is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 07-13-2015, 06:26 PM  
lunarwtr
The Undying
 
lunarwtr's Avatar
Interface Author - Click to view interfaces

Forum posts: 121
File comments: 344
Uploads: 11
Quote:
This is quite useful, thanks!
glad you like it.
lunarwtr is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 07-13-2015, 05:36 PM  
Thurallor
The Undying
 
Thurallor's Avatar
Interface Author - Click to view interfaces

Forum posts: 202
File comments: 457
Uploads: 20
This is quite useful, thanks!
Thurallor is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 10-16-2012, 08:01 PM  
lunarwtr
The Undying
 
lunarwtr's Avatar
Interface Author - Click to view interfaces

Forum posts: 121
File comments: 344
Uploads: 11
Updated Waypoint to fix the location detection that was broken. Thanks again for reporting it.
lunarwtr is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 09-27-2012, 02:05 PM  
lunarwtr
The Undying
 
lunarwtr's Avatar
Interface Author - Click to view interfaces

Forum posts: 121
File comments: 344
Uploads: 11
Thank you for reporting.. I'll look into it
lunarwtr is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 09-27-2012, 01:53 PM  
pvthudson
The Wary

Forum posts: 0
File comments: 2
Uploads: 0
Hmm this does not appear to work anymore.

Even with version 1.3 I type /way target 27.1S 48.0W and it puts the arrow up but does not ever update it even when I click the refresher arrow
pvthudson is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-15-2012, 02:42 PM  
Koios
The Wary
 
Koios's Avatar

Forum posts: 3
File comments: 32
Uploads: 0
Quote:
It very well could be. I certainly haven't updated it in a very long time. Likely they changed the output of /loc command and Waypoint it no longer able to parse it correctly. Thanks for bringing this to my attension

edit: It turned out Turbine changed which chat channel /loc is output to. Version 1.3 should correct for this.
Grand! Works great for me, and smooth update as well with that amazingly useful tool you built, the Plugin Compendium
Koios is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-14-2012, 07:22 AM  
lunarwtr
The Undying
 
lunarwtr's Avatar
Interface Author - Click to view interfaces

Forum posts: 121
File comments: 344
Uploads: 11
Quote:
I only just discovered this one, seems it came with the latest version of Compendium, which I hadn't installed yet. So anyway, I'm not sure if you're aware of this, or if it's even just me being daft rather than a malfunction, but for me... Waypoint doesn't update, i.e. it keeps showing the 'reload' arrow, never shows any direction, no matter how many times I hit the button for /loc. Any thoughts? Possibly to do with Update 6?
It very well could be. I certainly haven't updated it in a very long time. Likely they changed the output of /loc command and Waypoint it no longer able to parse it correctly. Thanks for bringing this to my attension

edit: It turned out Turbine changed which chat channel /loc is output to. Version 1.3 should correct for this.

Last edited by lunarwtr : 03-14-2012 at 08:02 PM.
lunarwtr is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 03-14-2012, 06:56 AM  
Koios
The Wary
 
Koios's Avatar

Forum posts: 3
File comments: 32
Uploads: 0
I only just discovered this one, seems it came with the latest version of Compendium, which I hadn't installed yet. So anyway, I'm not sure if you're aware of this, or if it's even just me being daft rather than a malfunction, but for me... Waypoint doesn't update, i.e. it keeps showing the 'reload' arrow, never shows any direction, no matter how many times I hit the button for /loc. Any thoughts? Possibly to do with Update 6?
Koios is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 01-31-2012, 12:33 PM  
lunarwtr
The Undying
 
lunarwtr's Avatar
Interface Author - Click to view interfaces

Forum posts: 121
File comments: 344
Uploads: 11
Quote:
Any chance to make the arrow movable on the screen?

The arrow is completely in the middle of the avatar, even on your screenshots the arrow is up the screen.
If you mouse over the top left corner of the waypoint arrow, an icon will appear for dragging it.

Last edited by lunarwtr : 01-31-2012 at 12:33 PM.
lunarwtr is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 01-31-2012, 12:06 PM  
blackrat
The Wary
 
blackrat's Avatar

Forum posts: 0
File comments: 4
Uploads: 0
Any chance to make the arrow movable on the screen?

The arrow is completely in the middle of the avatar, even on your screenshots the arrow is up the screen.
blackrat is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 01-16-2012, 08:20 AM  
lunarwtr
The Undying
 
lunarwtr's Avatar
Interface Author - Click to view interfaces

Forum posts: 121
File comments: 344
Uploads: 11
Quote:
what changes were necessary to make the plugin compatible with non-english clients? i tried a few other plugins and i feel they fail to work because they have trouble writing / reading the serialized settings... i might be able to fix some stuff myself but i dont have time / want to find out everything on my own... thx.
To fix the serialization please refer to this
http://www.lotrointerface.com/downloads/info456.html

Last edited by lunarwtr : 01-16-2012 at 08:25 AM.
lunarwtr is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 01-16-2012, 06:13 AM  
vxu
The Wary

Forum posts: 0
File comments: 14
Uploads: 0
what changes were necessary to make the plugin compatible with non-english clients? i tried a few other plugins and i feel they fail to work because they have trouble writing / reading the serialized settings... i might be able to fix some stuff myself but i dont have time / want to find out everything on my own... thx.
vxu 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:38 PM.


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