View Single Post
06/21/14, 05:36 AM   #10
Garkin
 
Garkin's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 832
Originally Posted by CrazyDutchGuy View Post
Some MapID's have changed, below the new list

2 Glenumbra
4 Stormhaven
5 Rivenspire
9 Stonefalls
11 Deshaan
12 Malabal Tor
15 Bangkorai
16 Eastmarch
17 The Rift
18 Alik'r Desert
19 Greenshade
20 Shadowfen
38 Cyrodiil
110 Bleakrock Isle
111 Bal Foyen
155 Coldharbour
179 Auridon
180 Reaper's March
181 Grahtwood
293 Stros M'Kai
294 Betnikh
295 Khenarthi's Roost
353 Craglorn
Yeah, zoneIndex is different now ( GetCurrentMapZoneIndex() ), it seems that there is a new map with zoneIndex == 10.

mapIndex is still the same:
Code:
--GetCurrentMapIndex()
local mapIDs = {
    [1] = "Tamriel",
    [2] = "Glenumbra",
    [3] = "Rivenspire",
    [4] = "Stormhaven",
    [5] = "Alik'r Desert",
    [6] = "Bangkorai",
    [7] = "Grahtwood",
    [8] = "Malabal Tor",
    [9] = "Shadowfen",
    [10] = "Deshaan",
    [11] = "Stonefalls",
    [12] = "The Rift",
    [13] = "Eastmarch",
    [14] = "Cyrodiil",
    [15] = "Auridon",
    [16] = "Greenshade",
    [17] = "Reaper's March",
    [18] = "Bal Foyen",
    [19] = "Stros M'Kai",
    [20] = "Betnikh",
    [21] = "Khenarthi's Roost",
    [22] = "Bleakrock Isle",
    [23] = "Coldharbour",
    [24] = "Oblivion",
    [25] = "Craglorn"
}
  Reply With Quote