casucristy

hwerw

Jul 17th, 2012
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 1.13 KB | None | 0 0
  1. -- Fix some text and next quest in chain for quest 27726 - Hero's Call: Deepholm!
  2.  
  3. UPDATE `quest_template` SET `NextQuestId` = 27203, `OfferRewardText` = "Our world is in danger, <name>! We need the help of great heroes, like you, to save it!" WHERE `entry` = 27727;
  4.  
  5. -- The MaelsTrom quest
  6.  
  7. -- add chain quest id and text at reward
  8. UPDATE `quest_template` SET `NextQuestId` = 27123, `OfferRewardText` = "<Thrall's muscles strain as primal energy flows through him. His eyes shift your way, acknowledging your arrival.> It is good to see you, $N.",`StartScript` = 27203 WHERE `entry` = 27203;
  9.  
  10. -- quest start script (will cast spell 84463 - summoning portal to maelstrom);
  11. DELETE FROM `quest_start_scripts` WHERE `id` = 27203;
  12. INSERT INTO `quest_start_scripts` VALUES
  13. (27203,1,15,84463,0,0,0,0,0,0);
  14.  
  15. -- fix script for portal
  16. UPDATE `gameobject_template` SET `AIName` = '', `ScriptName` = "go_portal_to_maelstrom" WHERE `entry` = 205268;
  17.  
  18. -- fix script for spell which summons portal (gameobject);
  19. DELETE FROM `spell_script_names` WHERE `spell_id` = 84463;
  20. INSERT INTO `spell_script_names` VALUES
  21. (84463,"spell_portal_to_maelstrom");
Advertisement
Add Comment
Please, Sign In to add comment