diff options
| author | click <none@none> | 2010-04-30 23:30:08 +0200 |
|---|---|---|
| committer | click <none@none> | 2010-04-30 23:30:08 +0200 |
| commit | 51881810b7a35893f73a439db6cb52184586690e (patch) | |
| tree | ab54ba073dbf0b003a1c15923a602b397d33b84e /sql | |
| parent | 4efd84a1e8e1da14dac7e1df9eeb9f71773dbb24 (diff) | |
Add support for daily quest "Overwhelmed!" (quest 12288)
Patch by Supabad (thank you)
--HG--
branch : trunk
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/8051_world_creature_template.sql | 1 | ||||
| -rw-r--r-- | sql/updates/8051_world_script_texts.sql | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/8051_world_creature_template.sql b/sql/updates/8051_world_creature_template.sql new file mode 100644 index 00000000000..6e6656dc9ca --- /dev/null +++ b/sql/updates/8051_world_creature_template.sql @@ -0,0 +1 @@ +UPDATE `creature_template` SET `ScriptName`='npc_wounded_skirmisher' WHERE `entry`=27463; diff --git a/sql/updates/8051_world_script_texts.sql b/sql/updates/8051_world_script_texts.sql new file mode 100644 index 00000000000..ca1a8d593a1 --- /dev/null +++ b/sql/updates/8051_world_script_texts.sql @@ -0,0 +1,5 @@ +DELETE FROM `script_texts` WHERE `npc_entry`=27463; +INSERT INTO `script_texts` (`npc_entry`, `entry`, `content_default`, `content_loc1`, `content_loc2`, `content_loc3`, `content_loc4`, `content_loc5`, `content_loc6`, `content_loc7`, `content_loc8`, `sound`, `type`, `language`, `emote`, `comment`) VALUES +(27463, -1800046, 'Thank you. $Class!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 'RANDOM_SAY_3'), +(27463, -1800045, 'Whoa.. i nearly died there. Thank you, $Race!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 'RANDOM_SAY_2'), +(27463, -1800044, 'Ahh..better..', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 'RANDOM_SAY_1'); |
