diff options
author | Blaymoira <none@none> | 2009-01-23 16:38:09 +0100 |
---|---|---|
committer | Blaymoira <none@none> | 2009-01-23 16:38:09 +0100 |
commit | eb5fee2665fe6fd2fb9ad3a1ad5eb37ac53d377b (patch) | |
tree | 4126b1fb5c7483a57c0d632c2eeda9403dc194d4 /sql | |
parent | 946e3b55f1bfd9c77705dc2542a185b7051e7250 (diff) |
*More cleanups
--HG--
branch : trunk
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/954_wrold_scripts.sql | 19 | ||||
-rw-r--r-- | sql/updates/CMakeLists.txt | 1 |
2 files changed, 20 insertions, 0 deletions
diff --git a/sql/updates/954_wrold_scripts.sql b/sql/updates/954_wrold_scripts.sql new file mode 100644 index 00000000000..009f59517ac --- /dev/null +++ b/sql/updates/954_wrold_scripts.sql @@ -0,0 +1,19 @@ +DELETE FROM script_texts WHERE entry BETWEEN -1000305 and -1000293; +INSERT INTO script_texts (entry, content_default, type, comment) VALUES +(-1000293, 'In Nagrand, food hunt ogre!', 0, 'LUMP_SAY0'), +(-1000294, 'You taste good with maybe a little salt and pepper.', 0, 'LUMP_SAY1'), +(-1000295, 'OK, OK! Lump give up!', 0, 'LUMP_DEFEAT'), + +(-1000296, 'Warning! Emergency shutdown process initiated by $N. Shutdown will complete in two minutes.', 2, 'npc_manaforge_control_console - EMOTE_START'), +(-1000297, 'Emergency shutdown will complete in one minute.', 2, 'npc_manaforge_control_console - EMOTE_60'), +(-1000298, 'Emergency shutdown will complete in thirty seconds.', 2, 'npc_manaforge_control_console - EMOTE_30'), +(-1000299, 'Emergency shutdown will complete in ten seconds.', 2, 'npc_manaforge_control_console - EMOTE_10'), +(-1000300, 'Emergency shutdown complete.', 2, 'npc_manaforge_control_console - EMOTE_COMPLETE'), +(-1000301, 'Emergency shutdown aborted.', 2, 'npc_manaforge_control_console - EMOTE_ABORT'), + +(-1000302, 'Saeed is currently engaged or awaiting orders to engage. You may check directly east of me and see if Saeed is ready for you. If he is not present then he is off fighting another battle. I recommend that you wait for him to return before attacking Dimensius.', 4, 'npc_professor_dabiri - WHISPER_DABIRI'), + +(-1000303, 'is very weak', 2, 'mob_phase_hunter - EMOTE_WEAK'), + +(-1000304, 'Bessy, is that you?', 0, 'npc_bessy- SAY_THADELL_1'), +(-1000305, 'Thank you for bringing back my Bessy, $N. I couldn\'t live without her!', 0, 'npc_bessy- SAY_THADELL_2');
\ No newline at end of file diff --git a/sql/updates/CMakeLists.txt b/sql/updates/CMakeLists.txt index dae6a56b69d..6ce60c51804 100644 --- a/sql/updates/CMakeLists.txt +++ b/sql/updates/CMakeLists.txt @@ -153,4 +153,5 @@ INSTALL(FILES 951_world_scripts.sql 952_world_scripts.sql 953_world_scripts.sql +954_world_scripts.sql DESTINATION share/trinity/sql/updates) |