Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
(not an addon. it's a game term / abbreviation)
No edit summary
Line 14: Line 14:
 
*[[Titan Panel]]
 
*[[Titan Panel]]
 
*[[Map Notes]]
 
*[[Map Notes]]
  +
  +
==A tloc [[macro]]==
  +
  +
/script SetMapToCurrentZone();
  +
local px, py = GetPlayerMapPosition("player");
  +
DEFAULT_CHAT_FRAME:AddMessage(string.format(
  +
"%s %.1f, %.1f %s",GetZoneText(), px*100,
  +
py*100, GetSubZoneText()));
   
 
[[Category:Game Terms]] [[Category:Abbreviations]]
 
[[Category:Game Terms]] [[Category:Abbreviations]]

Revision as of 22:31, 12 August 2006

Tloc is an abbreviation for "Thottbot location". It consists of a set of x/y coordinates, which is two numbers ranging from 0 to 100, representing a location on the current zone map.

  • 0,0 represents the top left corner
  • 100,0 represents the top right corner
  • 0,100 represents the bottom left corner
  • 100,100 represents the bottom right corner
  • 50,50 is the exact center of the map


Cosmos users can show their current position under the minimap by typing /tloc.
Various other AddOns are also capable of displaying your current tloc. Examples include:

A tloc macro

/script SetMapToCurrentZone();
  local px, py = GetPlayerMapPosition("player");
  DEFAULT_CHAT_FRAME:AddMessage(string.format(
  "%s %.1f, %.1f %s",GetZoneText(), px*100,
  py*100, GetSubZoneText()));