aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
author_manuel_ <manue.l@live.com.ar>2010-04-02 16:13:05 -0300
committer_manuel_ <manue.l@live.com.ar>2010-04-02 16:13:05 -0300
commit77a6c20e1255163a823fad43ee3b6616338ae968 (patch)
tree69245b29c2d514cea1dd299dff642cc650f8e26f /sql
parent21a5f99201d9339f159979762a801b958f47f575 (diff)
Implemented:
* Script at_aldurthar_gate for quests 13315 and 13351. * Script at_warsong_farms for quest 11686. * Script at_stormwright_shelf for quest 12741. Code from ScriptDev2. Before execute sql updates, apply TDB fix. New Fix Submissions > Core related DB content --HG-- branch : trunk
Diffstat (limited to 'sql')
-rw-r--r--sql/FULL/world_scripts_full.sql5
-rw-r--r--sql/updates/7748_word_scriptnames.sql3
2 files changed, 8 insertions, 0 deletions
diff --git a/sql/FULL/world_scripts_full.sql b/sql/FULL/world_scripts_full.sql
index 146465b3e0f..d9ed90265d9 100644
--- a/sql/FULL/world_scripts_full.sql
+++ b/sql/FULL/world_scripts_full.sql
@@ -6,6 +6,10 @@ UPDATE `item_template` SET `ScriptName`='';
UPDATE `creature_template` SET `ScriptName`='';
UPDATE `gameobject_template` SET `ScriptName`='';
+/* AREA TRIGGERS */
+UPDATE `areatrigger_scripts` SET `ScriptName`='at_aldurthar_gate' WHERE `entry` IN (5284,5285,5286,5287);
+UPDATE `areatrigger_scripts` SET `ScriptName`='at_warsong_farms' WHERE `entry` IN (4871,4872,4873);
+UPDATE `areatrigger_scripts` SET `ScriptName`='at_stormwright_shelf' WHERE `entry`=5108;
/* WORLD BOSS */
UPDATE `creature_template` SET `ScriptName`='boss_ysondre' WHERE `entry`=14887;
@@ -404,6 +408,7 @@ UPDATE `creature_template` SET `scriptname`='npc_trapped_mammoth_calf' WHERE `en
UPDATE `item_template` SET `scriptname`='item_dehta_trap_smasher' WHERE `entry`=35228;
UPDATE `creature_template` SET `ScriptName`='npc_magmoth_crusher' WHERE `entry`=25434;
+
/* BURNING STEPPES */
UPDATE `creature_template` SET `ScriptName`='npc_ragged_john' WHERE `entry`=9563;
diff --git a/sql/updates/7748_word_scriptnames.sql b/sql/updates/7748_word_scriptnames.sql
new file mode 100644
index 00000000000..a9b07086f06
--- /dev/null
+++ b/sql/updates/7748_word_scriptnames.sql
@@ -0,0 +1,3 @@
+UPDATE `areatrigger_scripts` SET `ScriptName`='at_aldurthar_gate' WHERE `entry` IN (5284,5285,5286,5287);
+UPDATE `areatrigger_scripts` SET `ScriptName`='at_warsong_farms' WHERE `entry` IN (4871,4872,4873);
+UPDATE `areatrigger_scripts` SET `ScriptName`='at_stormwright_shelf' WHERE `entry`=5108;