View Single Post
03/29/15, 05:14 PM   #2
circonian
AddOn Author - Click to view addons
Join Date: May 2014
Posts: 613
Garkin made one & posted it here: http://www.esoui.com/forums/showthread.php?p=12693#post12693

Although yes you could do it yourself. I didn't log in & test this, but something like this would work:
Lua Code:
  1. local zoneTable = {}
  2. for zoneIndex = 1, 2000 do
  3.     local zoneName = GetZoneNameByIndex(zoneIndex)
  4.     if zoneName ~= "" then
  5.         zoneTable[zoneIndex] = zoneName
  6.     end
  7. end

Last edited by circonian : 03/29/15 at 05:21 PM.
  Reply With Quote