Creatures of the Eco-Dome Fix

orangefire

Gold Supporter
Veteran Member
91
2021
57
Hello everyone! This is just a fix for the quest in Netherstorm "Creatures of the Eco-Dome". I originally planned to post a couple fixes here but unfortunately I couldn't figure out why my other one wasn't working. The quest will be a bit easier than the actual game as you can tag them multiple times, but it is now completable. I tried to script to despawn them after being tagged but it wasn't doing anything in game. I'll update the post if I get it working in the future.


SQL:
-- "Creatures of the Eco-Domes" fix, was missing scripts.

 INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES (20777, 0, 1, 0, 8, 0, 100, 0, 35771, 0, 0, 0, 0, 11, 40347, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Talbuk - Quest Complete on Tag');
 INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_param4`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES (20610, 0, 1, 0, 8, 0, 100, 0, 35771, 0, 0, 0, 0, 11, 40347, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 'Talbuk - Quest Complete on Tag');
 
Last edited:
Top