-
Notifications
You must be signed in to change notification settings - Fork 56
Open
Description
I use the following fix
UPDATE creature_template SET ScriptName='' WHERE entry IN (11192,11191,11193); -- disable NPC trainer SD2 scripts (half-ported from TBC/WotLK)
UPDATE quest_template SET NextQuestId=5306 WHERE entry=5284;
UPDATE quest_template SET NextQuestId=5307 WHERE entry=5302;
UPDATE quest_template SET PrevQuestId=5284, RewSpell=17040, RewSpellCast=17044, RequiredSkillValue=250, CompleteEmote=1 WHERE entry=8869;
UPDATE quest_template SET PrevQuestId=5302, RewSpell=17040, RewSpellCast=17044 WHERE entry=5305;
UPDATE quest_template SET PrevQuestId=5302, RewSpell=17041, RewSpellCast=17043 WHERE entry=5306;
UPDATE quest_template SET PrevQuestId=5284, RewSpell=17039, RewSpellCast=17042 WHERE entry=5307;
-- UPDATE quest_template SET ExclusiveGroup=8869 WHERE entry IN (8869,5305,5306,5307);About removed "Unlearn specialization" script: SD2 code is half- or even quarter- backported from TBC or WotLK. There was no way to unlearn specializations in Classic. Maybe it would be not bad to have such possibility (it could be scripted correctly), but current SD2 script is now working anyways.