Many incorrect BossIDs (WoD dungeons) #9


  • New
  • Patch
Closed
Assigned to _ForgeUser57836
  • _ForgeUser4206903 created this issue Nov 24, 2014

    Most BossIDs for WoD dungeon bosses are incorrect, as were a few in MoP raids. A couple important missing encounter mobs were added too. I also included the updated method of finding mobID. Patch dump is below

    21c21
    < -- localmobID = tonumber(GUID:sub(-13, -9), 16)
    ---
    > -- localmobID = tonumber(GUID:sub(-16, -12))
    54,57c54,57
    <     [86217]    = true,    -- Vigilant Kaathar
    <     [86218]    = true,    -- Soulbinder Nyami
    <     [86219]    = true,    -- Azzakel
    <     [86220]    = true,    -- Teron'gor
    ---
    >     [75839]    = true,    -- Vigilant Kaathar
    >     [76177]    = true,    -- Soulbinder Nyami
    >     [75927]    = true,    -- Azzakel
    >     [77734]    = true,    -- Teron'gor
    258,260c258,260
    <     [86223]    = true,    -- Roltall
    <     [86222]    = true,    -- Slave Watcher Crushto
    <     [86224]    = true,    -- Gug'rokk
    ---
    >     [75786]    = true,    -- Roltall
    >     [74787]    = true,    -- Slave Watcher Crushto
    >     [74790]    = true,    -- Gug'rokk
    444,447c444,447
    <     [86228]    = true,    -- Skylord Tovra
    <     [86225]    = true,    -- Railmaster Rocketspark
    <     [86226]    = true,    -- Borka the Brute
    <     [86227]    = true,    -- Nitrogg Thundertower
    ---
    >     [80005]    = true,    -- Skylord Tovra
    >     [77803]    = true,    -- Railmaster Rocketspark
    >     [77816]    = true,    -- Borka the Brute
    >     [79545]    = true,    -- Nitrogg Thundertower
    509,513c509,513
    <     [63664] = true,    -- Blade Lord Ta'yak
    <     [63666] = true,    -- Amber-Shaper Un'sok
    <     [63667] = true,    -- Garalon
    <     [65501] = true,    -- Wind Lord Mel'jarak
    <     [66791]    = true,    -- Zorlok
    ---
    >     [62543] = true, -- Blade Lord Ta'yak
    >     [62511] = true, -- Amber-Shaper Un'sok
    >     [63191] = true, -- Garalon
    >     [62397] = true, -- Wind Lord Mel'jarak
    >     [62980]    = true,    -- Zorlok
    600,602c600,603
    <     [87451]    = true,    -- Fleshrender Nok'gar
    <     [87452]    = true,    -- Ahri'ok Dugru
    <     [86231]    = true,    -- Makogg Emberblade
    ---
    >     [81305]    = true,    -- Fleshrender Nok'gar
    >     [81297] = true, -- Dreadfang
    >     [80816]    = true,    -- Ahri'ok Dugru
    >     [80805]    = true,    -- Makogg Emberblade
    604,605c605,607
    <     [86232]    = true,    -- Oshir
    <     [86233]    = true,    -- Skulloc
    ---
    >     [79852]    = true,    -- Oshir
    >     [83612]    = true,    -- Skulloc
    >     [83613] = true, -- Captain Koramar
    738,741c740,743
    <     [61421] = true,    -- Zian of the Endless Shadow -- 60701?
    <     [61423] = true,    -- Qiang the Merciless -- 60709?
    <     [61427] = true,    -- Subetai the Swift -- 60710?
    <     [61429] = true,    -- Meng the Demented
    ---
    >     [60701] = true, -- Zian of the Endless Shadow
    >     [60709] = true, -- Qiang the Merciless
    >     [60710] = true, -- Subetai the Swift
    >     [60708] = true,    -- Meng the Demented
    996,998c998,1000
    <     [86234]    = true,    -- Sadana Bloodfury
    <     [86236]    = true,    -- Bonemaw
    <     [76268]    = true,    -- Ner'zhu
    ---
    >     [75509]    = true,    -- Sadana Bloodfury
    >     [75452]    = true,    -- Bonemaw
    >     [76407]    = true,    -- Ner'zhul
    1058,1061c1060,1063
    <     [86238]    = true,    -- Ranjit
    <     [86239]    = true,    -- Araknath
    <     [76379]    = true,    -- Rukhran
    <     [86241]    = true,    -- High Sage Viryx
    ---
    >     [75964]    = true,    -- Ranjit
    >     [76141]    = true,    -- Araknath
    >     [76143]    = true,    -- Rukhran
    >     [76266]    = true,    -- High Sage Viryx
    1303,1307c1305,1310
    <     [86244]    = true,    -- Earthshaper Telu
    <     [86246]    = true,    -- Archmage Sol
    <     [86247]    = true,    -- Xeri'tac
    <     [86248]    = true,    -- Yalnu
    <     [86242]    = true,    -- Witherbark
    ---
    >     [83892] = true, -- Life Warden Gola
    >     [83893]    = true,    -- Earthshaper Telu
    >     [82682]    = true,    -- Archmage Sol
    >     [84550]    = true,    -- Xeri'tac
    >     [83846]    = true,    -- Yalnu
    >     [81522]    = true,    -- Witherbark
    1381,1383c1384,1386
    <     [70229]    = true,    -- Flaming Head <Head of Megaera>
    <     [70250]    = true,    -- Frozen Head <Head of Megaera>
    <     [70251]    = true,    -- Venomous Head <Head of Megaera>
    ---
    >     [70212]    = true,    -- Flaming Head <Head of Megaera>
    >     [70235]    = true,    -- Frozen Head <Head of Megaera>
    >     [70247]    = true,    -- Venomous Head <Head of Megaera>

  • _ForgeUser4206903 added the tags New Patch Nov 24, 2014
  • _ForgeUser4206903 posted a comment Dec 1, 2014

    in case of copy/paste errors from here, I've also posted this patch file to pastebin: http://pastebin.com/iXBEg1q0

  • Samnthar closed issue Jun 24, 2017

To post a comment, please login or register a new account.