Coordinates for maps

HotStuff

Member
I know there is plugins that u can use to get the coordinates when u get the map dispalyed, but as we know plugins can cause instability issues.

The following script can be entered as a macro, which gives u the coordinates where u are on the current map - useful for completing quests/finding places as forums often give x,y coordinates.

/script SetMapToCurrentZone() local x,y=GetPlayerMapPosition("Your name") DEFAULT_CHAT_FRAME:AddMessage(format("%s, %s: %.1f, %.1f",GetZoneText(),GetSubZoneText(),x*100,y*100))
 
Top