diff options
author | ZxBiohazardZx <zxbiohazardzx@gmail.com> | 2013-01-03 00:50:38 +0100 |
---|---|---|
committer | ZxBiohazardZx <zxbiohazardzx@gmail.com> | 2013-01-03 00:52:14 +0100 |
commit | 8d1e542231d80efd5c06cc567571d611a454af3d (patch) | |
tree | fe26f90e3c87c00809927e756e2560eebbe9fc82 | |
parent | 285a02b2e4423f50f8f2fa559b1c7484db2a32c4 (diff) |
DB/Script : kill more gameobject_scripts. THIS UNSUPPORTS THE FOLLOWING DUNGEON BOSSES:
Scholomance: Kirtenos the Herald
Scarlet Monestry - Cathedral: Fairbanks, Mograine, Whitemane
-rw-r--r-- | sql/updates/world/2013_01_02_12_world_go_script.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/updates/world/2013_01_02_12_world_go_script.sql b/sql/updates/world/2013_01_02_12_world_go_script.sql new file mode 100644 index 00000000000..aea0a67c47e --- /dev/null +++ b/sql/updates/world/2013_01_02_12_world_go_script.sql @@ -0,0 +1,11 @@ +-- remove the summoning of the herald and closing of the gate via the brazier +-- this is an instance encounter and should be handled via cpp, reopen the door if npc is dead +DELETE FROM `gameobject_scripts` WHERE `id`=43208; + +-- This script will NOT work untill CPP changes are made, this UNSUPPORTS Scarlet Monestry Cathedral wing! +DELETE FROM `gameobject_scripts` WHERE `id` IN (11881,11894); +UPDATE `gameobject_template` SET `AIName`='SmartGameObjectAI' WHERE `entry` IN (104589,97701); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (104589,97701) AND `source_type`=1; +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 +(104589,1,0,0,70,0,100,0,2,0,0,0,9,0,0,0,0,0,0,14,11875,104591,0,0,0,0,0,'Lever - On activate - Activate Chapel Door'), +( 97701,1,0,0,70,0,100,0,2,0,0,0,9,0,0,0,0,0,0,14,11876, 97700,0,0,0,0,0,'Torch - On activate - Activate Secret Door'); |