View Single Post
05/26/14, 06:09 AM   #2
thelegendaryof
 
thelegendaryof's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 161
Here 's info Thread where garkin created it from:

http://www.esoui.com/forums/showthread.php?t=1578

And here there is his post how he got that data:

Originally Posted by Garkin View Post
How to get POI names for the current map in the current language:
Lua Code:
  1. local zoneIndex = GetCurrentMapZoneIndex()
  2. for poiIndex = 1, GetNumPOIs(zoneIndex) do
  3.    local name, level, startDesc, finishedDesc = GetPOIInfo(zoneIndex, poiIndex)
  4.    d(name)
  5. end
Or just take a look to the Undiscovered addon files (Language\UndiscoveredData-??.lua).
  Reply With Quote