Download
(107 Kb)
Download
Updated: 07-19-12 03:44 PM
Pictures
File Info
Updated:07-19-12 03:44 PM
Created:07-12-12 07:07 AM
Downloads:1,135
Favorites:6
MD5:
Waypoint
Version: 1.9r2a
by: adelea [More]
Waypoint will show you the direction of a given set of X, Y coordinates.

Know where you need to go, but dont like trying to manually locate the coords on the map - then use Waypoint.

/wp X Y -- sets your target waypoint to world coords X,Y
/wp mode -- toggles between relative and absolute headings
/wp clear -- clears the current waypoint (or right-click the compass icon)
/wp hide -- toggles display of UI when not actively tracking
/wp distance N -- sets how close you need to get to target [default = 5]
/wp update N -- sets text update time to N seconds [default = 2]
/wp text -- toggles display of chat frame updates [default = ON]
/wp scale N.NN -- resizes UI elements to N.NN times default
1.9r2a - Repackage into folder

1.9r2

- If standing still, and have text updates turned on, only every 10th update is displayed
- Added new heading mode, relative
/wp mode -- toggles between the two modes

1.9r1 - Initial release.

/wp X Y -- sets your target waypoint to world coords X,Y
/wp clear -- clears the current waypoint (or right-click the compass icon)
/wp hide -- toggles display of UI when not actively tracking
/wp distance N -- sets how close you need to get to target [default = 5]
/wp update N -- sets text update time to N seconds [default = 2]
/wp text -- toggles display of chat frame updates [default = ON]
/wp scale N.NN -- resizes UI elements to N.NN times default
Archived Files (3)
File Name
Version
Size
Author
Date
1.9r2
106kB
adelea
07-19-12 09:40 AM
1.9r1
39kB
adelea
07-12-12 07:07 AM
0B
adelea
01-01-70 12:00 AM


Post A Reply Comment Options
Unread 04-28-14, 01:51 PM  
gjunky1

Forum posts: 0
File comments: 3
Uploads: 0
Instead of the word "Waypoint:" next the compass image can we have our coordinates in yellow or gold (or whatever)?

An option to change the alpha of the background would be nice, also a separate option to change the alpha of the compass as well.

It could look something like this:
[C] 1234, 1234:5678, 8765
gjunky1 is offline Report comment to moderator  
Reply With Quote
Unread 07-13-12, 04:21 AM  
adelea
Claw of Regulos
AddOn Author - Click to view AddOns

Forum posts: 22
File comments: 285
Uploads: 6
Quote:
Originally Posted by fenmarel
You can add lang files?
I translate to russian lang)
I can certainly add translations, if you want to do the work =)

Code:
		["You have reached your destination!"] = "You have reached your destination!",
		["Your target is %.2fm away, heading %s"] = "Your target is %.2fm away, heading %s",
		["sets your target waypoint to world coords X,Y"] = "sets your target waypoint to world coords X,Y",
		["clears the current waypoint (or right-click the compass icon)"] = "/wp clear -- clears the current waypoint (or right-click the compass icon)",
		["toggles between absolute and relative heading modes [default = Absolute]"] = "/wp mode -- toggles between absolute and relative heading modes [default = Absolute]",
		["toggles display of UI when not actively tracking [default = SHOWN]"] = "/wp hide -- toggles display of UI when not actively tracking [default = SHOWN]",
		["sets how close you need to get to target [default = 5]"] = "/wp distance N -- sets how close you need to get to target [default = 5]",
		["sets text update time to N seconds [default = 2]"] = "/wp update N -- sets text update time to N seconds [default = 2]",
		["toggles display of chat frame updates [default = ON]"] = "/wp text -- toggles display of chat frame updates [default = ON]",
		["resizes UI elements to N.NN times default"] = "/wp scale N.NN -- resizes UI elements to N.NN times default",
		
		["Waypoint"] = "Waypoint",
		["scale"] = "scale",
		["distance"] = "distance",
		["update"] = "update",
		["text"] = "text",
		["hide"] = "hide",
		["mode"] = "mode",
		["clear"] = "clear",
		["Scaling UI to %s"] = "Scaling UI to %s",
		["Invalid arguments"] = "Invalid arguments",
		["Setting destination distance to %dm"] = "Setting destination distance to %dm",
		["Setting update text delay to %ds"] = "Setting update text delay to %ds",
		["Text updates for direction: "] = "Text updates for direction: ",
		["Hiding UI when not tracking: %s"] = "Hiding UI when not tracking: %s",
		["Mode set to absolute. Arrows show compass direction of waypoint"] = "Mode set to absolute. Arrows show compass direction of waypoint",
		["Mode set to relative. Arrows show direction of waypoint relative to the heading of your character"] = "Mode set to relative. Arrows show direction of waypoint relative to the heading of your character",
		
		["Tracking to"] = "Tracking to",
		["Can make no sense of"] = "Can make no sense of",
		
		["N"] = "North",
		["NE"] = "North-East",
		["NW"] = "North-West",
		["E"] = "East",
		["W"] = "West",
		["S"] = "South",
		["SE"] = "South-East",
		["SW"] = "South-West"
I've been through the addon, and the above are all the (current) unique things the addon prints out.

The % sign is a placeholder for a variable, so depending on grammar, that may need moving around also.
adelea is offline Report comment to moderator  
Reply With Quote
Unread 07-13-12, 03:33 AM  
fenmarel

Forum posts: 0
File comments: 1
Uploads: 0
You can add lang files?
I translate to russian lang)
fenmarel is offline Report comment to moderator  
Reply With Quote
Unread 07-12-12, 10:46 AM  
Cesh
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 9
Uploads: 2
Quote:
Originally Posted by adelea
Quote:
Originally Posted by Cesh
This has so many possibilities, have you considered allowing cood input from other addons? or turning it into a lib?

If not can I have permission to use your code with full credits?

I would love to add this to my MiniMapCoodinates.

-DeaDBeaT
Go for it =)

Most of the addon is just support routines for the math.atan2(diffx, diffy) call (as seen in WP.direction())

Thanks!

(now off to see how badly I can break things... lol)
Cesh is offline Report comment to moderator  
Reply With Quote
Unread 07-12-12, 10:40 AM  
adelea
Claw of Regulos
AddOn Author - Click to view AddOns

Forum posts: 22
File comments: 285
Uploads: 6
Quote:
Originally Posted by Cesh
This has so many possibilities, have you considered allowing cood input from other addons? or turning it into a lib?

If not can I have permission to use your code with full credits?

I would love to add this to my MiniMapCoodinates.

-DeaDBeaT
Go for it =)

Most of the addon is just support routines for the math.atan2(diffx, diffy) call (as seen in WP.direction())
adelea is offline Report comment to moderator  
Reply With Quote
Unread 07-12-12, 10:33 AM  
Cesh
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 9
Uploads: 2
This has so many possibilities, have you considered allowing cood input from other addons? or turning it into a lib?

If not can I have permission to use your code with full credits?

I would love to add this to my MiniMapCoodinates.

-DeaDBeaT
Cesh is offline Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: