View Single Post
12-15-22, 01:13 PM   #1
gmarco
An Onyxian Warder
 
gmarco's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2009
Posts: 362
New areaID m+ dungeon code

Hi all,

I am trying to update my addon to works with the new season m+ dungeons.

I was looking for the right areaID for them, but I was unable to find easily.
I got them crawling some weakauras.

Lua Code:
  1. local mapIDs = {
  2.     [433] = {"ALGE",    "Algeth'ar Academy"},
  3.     [430] = {"RUBY",    "Ruby Life Pools"},
  4.     [428] = {"AZURE",   "The Azure Vault"},
  5.     [400] = {"NOKH",    "The Nokhud Offensive"},
  6.     [252] = {"COURT",   "Court of Stars"},
  7.     [240] = {"HALLS",   "Halls of Valor"},
  8.     [223] = {"GROUND""Shadowmoon Burial Grounds"},
  9.     [201] = {"JADE",    "Temple of the Jade Serpent"},
  10. }

But I am not sure they are right :/

Probably "The Nokhud Offensive" is right having me a +2 key and it works ...



Thanks.
__________________
This is Unix-Land. In quiet nights, you can hear the Windows machines reboot.

Last edited by gmarco : 12-15-22 at 01:19 PM.
  Reply With Quote