Bastek

Fix for quests 12185 (Alliance) and 12203 (Horde)

Mar 4th, 2011
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 2.21 KB | None | 0 0
  1. -- Fix for quests 12185 (Alliance) and 12203 (Horde) (by Bastek)
  2.  
  3. UPDATE creature_template SET AIName = 'EventAI' WHERE entry = 27212;
  4. UPDATE gameobject_template SET data2 = 60046 WHERE entry = 188596;
  5.  
  6. DELETE FROM event_scripts WHERE id = 60046;
  7. INSERT INTO event_scripts VALUES
  8. (60046, 0, 10, 27212, 120000, 0, 0, 0, 0, 0, 0, 0, 3404.324219, -5394.511230, 270.199677, 1.148978, 'Image of Loken - Spawn'),
  9. (60046, 22, 8, 27212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Loken Podest - Quest Credit');
  10.  
  11. DELETE FROM creature_ai_scripts WHERE creature_id = 27212;
  12. INSERT INTO creature_ai_scripts VALUES
  13. (2721201, 27212, 1, 0, 100, 0, 1000, 1000, 0, 0, 1, -2000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Image of Loken - Text'),
  14. (2721202, 27212, 1, 0, 100, 0, 6000, 6000, 0, 0, 1, -2001, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Image of Loken - Text'),
  15. (2721203, 27212, 1, 0, 100, 0, 11000, 11000, 0, 0, 1, -2002, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Image of Loken - Text'),
  16. (2721204, 27212, 1, 0, 100, 0, 16000, 16000, 0, 0, 1, -2003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Image of Loken - Text'),
  17. (2721205, 27212, 1, 0, 100, 0, 21000, 21000, 0, 0, 1, -2004, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Image of Loken - Text');
  18.  
  19. DELETE FROM creature_ai_texts WHERE entry IN (-2000, -2001, -2002, -2003, -2004);
  20. INSERT INTO creature_ai_texts VALUES
  21. (-2000, 'You''re late, overseer.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL),
  22. (-2001, 'Destiny will not wait. Your craftsmen must increase their production of the war golems before the stone giant leader and his army reach Ulduar.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL),
  23. (-2002, 'Tell your rune-smiths to continue converting what stone giants you can. Those that will not submit must be destroyed.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL),
  24. (-2003, 'If the stone giants interfere with our work at Ulduar, I will hold you and your thane responsible. Mortal must not be allowed to come to the aid of the giants.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL),
  25. (-2004, 'Return to your duties, overseer. Be certain to impress upon your workers the urgency of their tasks.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL);
Advertisement
Add Comment
Please, Sign In to add comment