6cef507
DB: TDB 335.52
Quest: Journey to the Sunwell (http://www.wowhead.com/quest=24522)
Problem: Turn-in NPC is not present outside the Sunwell (Halduron Brightwing, http://www.wowhead.com/npc=37527)
confirmed
commit 822755ca87d57310ef07ade7d0fbac78d1989bac
A spawn point can be added like this:
DELETE FROM `creature` WHERE id=37527;
INSERT INTO `creature`
(`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`)
VALUES
(????, 37527, 530, 1, 1, 0, 0, 12563.4, -6777.85, 15.0919, 0.269424, 300, 0, 0, 558900, 25240, 0, 0, 0, 0);
However, if you read the comments in wowhead this NPC appears after you have finished a quest.
And besides Halduron Brightwing we need the spawn of Thalorien Dawnseeker
I found here a fix:
https://github.com/TrinityCore/TrinityCore/issues/2714
But it seems it's never done in the updates.
SET @CGUID := 43498;
INSERT INTO `creature` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `MovementType`) VALUES
(@CGUID, 37527, 530, 1, 1, 12559.3, -6783.323, 15.06894, 0.06981317, 120, 0, 0);
For some reason the npc Halduron Brightwing
It can be seen only in GM state.
I suspect there is some phase mask involved. Maybe some quest chain needs to be done before?


Is this requirement works?
He's just outside the Sunwell Plateau instance portal, but you do have to hand The Halls of Reflection in to the Myralion Sunblaze in Icecrown first before he'll appear.
Also, ensure that if you mistakenly join a raid group to gain entrance to Sunwell Plateau (which isn't necessary), you leave the group before trying to obtain Thalorien's Blessing, otherwise you won't be able to get it.
For some reason the npc Halduron Brightwing is not visible for players.
It can be seen only in GM state.I suspect there is some phase mask involved. Maybe some quest chain needs to be done before?
Is this requirement works?
He's just outside the Sunwell Plateau instance portal, but you do have to hand The Halls of Reflection in to the Myralion Sunblaze in Icecrown first before he'll appear.
Also, ensure that if you mistakenly join a raid group to gain entrance to Sunwell Plateau (which isn't necessary), you leave the group before trying to obtain Thalorien's Blessing, otherwise you won't be able to get it.
Yes you are right. It is visible only with .gm on
If .gm off, then the NPCs disappear from view.
By the way, Halduron Brightwing can鈥檛 pass the quest
I think you should rediscover the problem
Ok. I've tested the entire quest chain + the one in Ice Crown Dungeons. (POS/FOS/HOR)
The npc is still not visible for me as normal player.
Something is off here.
Not sure if this helps, but have you checked to see if the command .npc info gives any information about the phases this NPC is using? (given that you see the NPC with GM ON to target him)


if you change phase to 1, it will be visible to all players
Yeah. I know that, but maybe this phase is added with a reason and involved with other things that I'm not aware of.
if in the sunwell according to the quest The Purification of Quel'Delar you make yourself in phase 2048, then another sunwell is visible, as well as all these NPCs are visible. I think this is connected with this
Sounds like there is something wrong in handling which phase the player is in, maybe also where the phasing should change. Slightly related phasing issue also happens between Brunnhildar Village and the Valley of Ancient Winters, but the issue there it is more about borders between areas where the phasing changes.
Same is on our server, can't see npc near sunwell gates or elsewhere. Could our GM admin to fix it? Or we should wait some update?