diff options
| author | kaelima <jeppo_meyer@msn.com> | 2011-05-24 05:10:15 +0200 |
|---|---|---|
| committer | kaelima <jeppo_meyer@msn.com> | 2011-05-24 05:10:15 +0200 |
| commit | cb7d6647ad71b07b715acbc4ecabd6db49817770 (patch) | |
| tree | f302ca106b6c37a965dd70e5551b87822d854628 | |
| parent | 46b58cee50a2af55d21f8b1ae31f3b6273ae28c6 (diff) | |
DB/SAI: Fix quest 12060/12061 - Projection and Plans
Also rename most recent added SQL to proper date.
| -rw-r--r-- | sql/updates/world/2011_05_23_00_world_spell_dbc.sql (renamed from sql/updates/world/2011_05_22_09_world_spell_dbc.sql) | 0 | ||||
| -rw-r--r-- | sql/updates/world/2011_05_24_00_world_sai.sql | 16 |
2 files changed, 16 insertions, 0 deletions
diff --git a/sql/updates/world/2011_05_22_09_world_spell_dbc.sql b/sql/updates/world/2011_05_23_00_world_spell_dbc.sql index c221046df54..c221046df54 100644 --- a/sql/updates/world/2011_05_22_09_world_spell_dbc.sql +++ b/sql/updates/world/2011_05_23_00_world_spell_dbc.sql diff --git a/sql/updates/world/2011_05_24_00_world_sai.sql b/sql/updates/world/2011_05_24_00_world_sai.sql new file mode 100644 index 00000000000..ceb87c7b63a --- /dev/null +++ b/sql/updates/world/2011_05_24_00_world_sai.sql @@ -0,0 +1,16 @@ +SET @ENTRY := 27853; +SET @GUID := 115101; + +-- Remove old EAI and replace with proper SAI +DELETE FROM `creature_ai_scripts` WHERE `id`=2785301; +UPDATE `creature_template` SET `AIName`= 'SmartAI' WHERE `entry`=@ENTRY; + +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (@ENTRY,-109577,-109576,-109573); +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`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@ENTRY,0,0,0,1,0,100,0,3000,3000,3000,3000,11,49731,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Projections and Plans Kill Credit Bunny - OOC - Cast Projections and Plans: Kill Credit on self'), +(-109577,0,0,0,1,0,100,1,1000,1000,30000,30000,11,46906,2,0,0,0,0,10,@GUID,@ENTRY,0,0,0,0,0, 'Surge Needle Sorcerer - OOC - Cast Surge Needle Beam'), +(-109577,0,1,0,0,0,100,0,3000,4000,3000,5000,11,51797,0,0,0,0,0,2,0,0,0,0,0,0,0, 'Surge Needle Sorcerer - Combat - Cast Arcane Blast on victim'), +(-109576,0,0,0,1,0,100,1,1000,1000,30000,30000,11,46906,2,0,0,0,0,10,@GUID,@ENTRY,0,0,0,0,0, 'Surge Needle Sorcerer - OOC - Cast Surge Needle Beam'), +(-109576,0,1,0,0,0,100,0,3000,4000,3000,5000,11,51797,0,0,0,0,0,2,0,0,0,0,0,0,0, 'Surge Needle Sorcerer - Combat - Cast Arcane Blast on victim'), +(-109573,0,0,0,1,0,100,1,1000,1000,30000,30000,11,46906,2,0,0,0,0,10,@GUID,@ENTRY,0,0,0,0,0, 'Surge Needle Sorcerer - OOC - Cast Surge Needle Beam'), +(-109573,0,1,0,0,0,100,0,3000,4000,3000,5000,11,51797,0,0,0,0,0,2,0,0,0,0,0,0,0, 'Surge Needle Sorcerer - Combat - Cast Arcane Blast on victim'); |
