diff options
author | Blaymoira <none@none> | 2009-01-23 19:45:49 +0100 |
---|---|---|
committer | Blaymoira <none@none> | 2009-01-23 19:45:49 +0100 |
commit | 577edf5d49357955b51a510182e91af14263f9ea (patch) | |
tree | bd9f09e7a1175360d9c28fc389404cdae21531e4 /sql | |
parent | aebb6c3d1b8282d08e42fafd58ab4b2901e4b109 (diff) |
*Cleanup in world zones (now all world map zones finished)
--HG--
branch : trunk
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/954_world_scripts.sql (renamed from sql/updates/954_wrold_scripts.sql) | 0 | ||||
-rw-r--r-- | sql/updates/956_world_scripts.sql | 26 | ||||
-rw-r--r-- | sql/updates/CMakeLists.txt | 1 |
3 files changed, 27 insertions, 0 deletions
diff --git a/sql/updates/954_wrold_scripts.sql b/sql/updates/954_world_scripts.sql index 009f59517ac..009f59517ac 100644 --- a/sql/updates/954_wrold_scripts.sql +++ b/sql/updates/954_world_scripts.sql diff --git a/sql/updates/956_world_scripts.sql b/sql/updates/956_world_scripts.sql new file mode 100644 index 00000000000..35859f191b5 --- /dev/null +++ b/sql/updates/956_world_scripts.sql @@ -0,0 +1,26 @@ +DELETE FROM script_texts WHERE entry BETWEEN -1000365 and -1000350; +INSERT INTO script_texts (entry, content_default, type, comment) VALUES +(-1000350, 'Who dares awaken Aquementas?', 1, 'mob_aquementas - AGGRO_YELL_AQUE'), + +(-1000351, 'I give up! Please don\'t kill me!', 0, 'mob_unkor_the_ruthless - SAY_SUBMIT'), + +(-1000352, 'I choose the third option: KILLING YOU!', 0, 'npc_floon - SAY_FLOON_ATTACK'), + +(-1000353, 'Ok let\'s get out of here!', 0, 'npc_isla_starmane - SAY_PROGRESS_1'), +(-1000354, 'You sure you\'re ready? Take a moment.', 0, 'npc_isla_starmane - SAY_PROGRESS_2'), +(-1000355, 'Alright, let\'s do this!', 0, 'npc_isla_starmane - SAY_PROGRESS_3'), +(-1000356, 'Ok, I think I can make it on my own from here. Thank you so much for breaking me out of there!', 0, + +'npc_isla_starmane - SAY_PROGRESS_4'), + +(-1000357, 'Belore...', 0, 'npc_lady_sylvanas_windrunner - SAY_LAMENT_END'), +(-1000358, 'kneels down and pick up the amulet.', 2, 'npc_lady_sylvanas_windrunner - EMOTE_LAMENT_END'), + +(-1000359, 'You have my blessing', 0, 'npcs_ashyen_and_keleth - GOSSIP_REWARD_BLESS'), + +(-1000360, 'Is the way clear? Let\'s get out while we can, $N.', 0, 'npc_kayra_longmane - SAY_PROGRESS_1'), +(-1000361, 'Looks like we won\'t get away so easy. Get ready!', 0, 'npc_kayra_longmane - SAY_PROGRESS_2'), +(-1000362, 'Let\'s keep moving. We\'re not safe here!', 0, 'npc_kayra_longmane - SAY_PROGRESS_3'), +(-1000363, 'Look out, $N! Enemies ahead!', 0, 'npc_kayra_longmane - SAY_PROGRESS_4'), +(-1000364, 'We\'re almost to the refuge! Let\'s go.', 0, 'npc_kayra_longmane - SAY_PROGRESS_5'), +(-1000365, 'I can see my fellow druids from here. Thank you, $N. I\'m sure Ysiel will reward you for your actions!', 0, 'npc_kayra_longmane - SAY_PROGRESS_6');
\ No newline at end of file diff --git a/sql/updates/CMakeLists.txt b/sql/updates/CMakeLists.txt index df51b03190a..3c28413eb67 100644 --- a/sql/updates/CMakeLists.txt +++ b/sql/updates/CMakeLists.txt @@ -155,4 +155,5 @@ INSTALL(FILES 953_world_scripts.sql 954_world_scripts.sql 955_world_scripts.sql +956_world_scripts.sql DESTINATION share/trinity/sql/updates) |