TrinityCore icon indicating copy to clipboard operation
TrinityCore copied to clipboard

Quest, The Scarlet Apocalypse: Lich King missing in Deaths Breach

Open Pickausrname opened this issue 7 years ago • 8 comments
trafficstars

Description: http://www.wowhead.com/quest=12778/the-scarlet-apocalypse

Current behaviour: Lich King cannot be seen in deaths reach. Quest mark is present on the minimal though.

Expected behaviour:

Lich King is present and can be interacted with.

Steps to reproduce the problem:

Accept the quest from Migraine. Fly down from the hold to deaths Breach. Walk to where the quest marker “?” is on the minimap. He is not there. Only a bunch of skeleton archers.

*Branch(es): Master

TC Rev.: TrinityCore rev. 95475fe 2018-04-17 19:57:49 +0200 (master branch) (Win64, RelWithDebInfo, Static)

Windows: Compiled on: Windows 10.0.16299

DB: Using World DB: TDB 735.00

Pickausrname avatar Jun 08 '18 09:06 Pickausrname

It was fixed on 3.3.5 https://github.com/TrinityCore/TrinityCore/issues/16330 maybe just need cherry pick.

Killyana avatar Jun 08 '18 11:06 Killyana

Killyana: delighted to hear this can be fixed. Can you please kindly explainwhat “cherry pick” is, and how it works? Thanks!

Pickausrname avatar Jun 08 '18 12:06 Pickausrname

Some commits from 3.3.5 must be ported to master branch.

Killyana avatar Jun 08 '18 13:06 Killyana

Hey guys, I did a bit of hack fixing to fix this issue: changed the phaseid of Lich King from 0 to 169, in world.creature, and he appeared.

For those who are interested, the Lich King Id in wold.creature is found by looking up the questid in world.queststarter.

Where as the phaseid 169 was referring to another creature which is spawned at the time.

But I have a question now: how do I determine the current phaseid of the quest I am in?

You see, I actualy want to know a bit about how phasing data, and the scene system is kept in the database

Thanks

Pickausrname avatar Jun 12 '18 20:06 Pickausrname

It will be fixed by https://github.com/TrinityCore/TrinityCore/pull/22892 as the gob will be loaded on the client before the npc.

Killyana avatar Jan 01 '19 19:01 Killyana

This is still an issue. A workaround that sometimes works is to drop the quest and re-accept. But the Lich King's presence is inconsistent at best.

dewmguy avatar Jul 17 '20 02:07 dewmguy

https://youtu.be/5DMYXMDoQpI?t=31 on retail it's bugged too

offl avatar Aug 31 '21 22:08 offl

I experienced this problem with a TrinityCore download in July 2022. The real issue is that the Lich King is standing down inside the platform instead of on top of it.

Move him to the top.

Verified that in creature_template, his entry is 29110.

SELECT * FROM creature_template WHERE entry=29110;

Yep, it's him. So moved his creature instance to the top of the platform.

UPDATE creature SET position_z=161.149261 WHERE id=29110;

ElectronHerder avatar Aug 25 '22 07:08 ElectronHerder