- 916
- 2015
- 24
- Location
- Barryton Michigan USA
[Name, Type] quest back so soon, Sholazar Basin Horde
[What it does] Mistcaller Soo-gan 28114 is invisible to players. My gm can see him, But this quest can't be completed by players.
[What it should do]Travel to Mistwhisper Refuge and speak to Mistcaller Soo-gan.
http://www.wowhead.com/quest=12574/back-so-soon
I tried changing his flags, And this had no effect on him.
Evidently, There are certain npc's in sholazar that don't show up to players until your friendly with their faction. Soo-gan is one of them. However I am friendly with the Oracle faction, And he does not show up. I don't know if this is supposed to be scripted somehow, I would imagine that it's a script attached to Soo-gan that checks your reputation level to determine wether or not to be visible, But i do not know how it works.
Also he was bugged on retail too, People couldn't see him at all, And he attacked them. Maybe there is another modelid that we can use for him that people can actually see.
Ok here is the fix, This Data was missing in the spell_area table. Note.. Changing quest_end_status to 64 as suggested on trinitycore is wrong.
I am aware that the frenzyheart faction in sholazar also have this exact same setup, So you can only see them when your friendly. This can be used as a template to fix that aura also once you know his spellid that makes him visible. Lightningcaller Soo-met 28107, But i do not know if he is broken or not.
[What it does] Mistcaller Soo-gan 28114 is invisible to players. My gm can see him, But this quest can't be completed by players.
[What it should do]Travel to Mistwhisper Refuge and speak to Mistcaller Soo-gan.
http://www.wowhead.com/quest=12574/back-so-soon
I tried changing his flags, And this had no effect on him.
Evidently, There are certain npc's in sholazar that don't show up to players until your friendly with their faction. Soo-gan is one of them. However I am friendly with the Oracle faction, And he does not show up. I don't know if this is supposed to be scripted somehow, I would imagine that it's a script attached to Soo-gan that checks your reputation level to determine wether or not to be visible, But i do not know how it works.
Also he was bugged on retail too, People couldn't see him at all, And he attacked them. Maybe there is another modelid that we can use for him that people can actually see.
Ok here is the fix, This Data was missing in the spell_area table. Note.. Changing quest_end_status to 64 as suggested on trinitycore is wrong.
Code:
DELETE FROM `spell_area` WHERE `spell`=52217 AND `area`=4287 AND `quest_start`=12692 AND `quest_start_active`=0 AND `aura_spell`=0 AND `racemask`=0 AND `gender`=2;
INSERT INTO `spell_area` (`spell`, `area`, `quest_start`, `quest_start_active`, `quest_end`, `aura_spell`, `racemask`, `gender`, `autocast`, `quest_start_status`, `quest_end_status`) VALUES (52217, 4287, 12692, 0, 0, 0, 0, 2, 1, 64, 11);
DELETE FROM `spell_area` WHERE `spell`=52217 AND `area`=4288 AND `quest_start`=12695 AND `quest_start_active`=0 AND `aura_spell`=0 AND `racemask`=0 AND `gender`=2;
INSERT INTO `spell_area` (`spell`, `area`, `quest_start`, `quest_start_active`, `quest_end`, `aura_spell`, `racemask`, `gender`, `autocast`, `quest_start_status`, `quest_end_status`) VALUES (52217, 4288, 12695, 0, 0, 0, 0, 2, 1, 64, 11);
DELETE FROM `spell_area` WHERE `spell`=52217 AND `area`=4306 AND `quest_start`=12574 AND `quest_start_active`=0 AND `aura_spell`=0 AND `racemask`=0 AND `gender`=2;
INSERT INTO `spell_area` (`spell`, `area`, `quest_start`, `quest_start_active`, `quest_end`, `aura_spell`, `racemask`, `gender`, `autocast`, `quest_start_status`, `quest_end_status`) VALUES (52217, 4306, 12574, 0, 0, 0, 0, 2, 1, 74, 11);
DELETE FROM `spell_area` WHERE `spell`=52217 AND `area`=4308 AND `quest_start`=12574 AND `quest_start_active`=0 AND `aura_spell`=0 AND `racemask`=0 AND `gender`=2;
INSERT INTO `spell_area` (`spell`, `area`, `quest_start`, `quest_start_active`, `quest_end`, `aura_spell`, `racemask`, `gender`, `autocast`, `quest_start_status`, `quest_end_status`) VALUES (52217, 4308, 12574, 0, 0, 0, 0, 2, 1, 74, 11);
I am aware that the frenzyheart faction in sholazar also have this exact same setup, So you can only see them when your friendly. This can be used as a template to fix that aura also once you know his spellid that makes him visible. Lightningcaller Soo-met 28107, But i do not know if he is broken or not.
Last edited: