View Single Post
11/28/14, 09:20 PM   #2
Garkin
 
Garkin's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 832
As far as I know there is no way to do this unless you make your own map table.

Something like:

Lua Code:
  1. local maps = {
  2.     [zoneIndex] = {
  3.         parent = parentZoneIndex,
  4.         subzones = {
  5.             subzoneIndex1,
  6.             subzoneIndex2,
  7.             ...
  8.         },
  9.     },
  10. }

List of all zones is here:
http://www.esoui.com/forums/showthre...2693#post12693
  Reply With Quote