aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorBlaymoira <none@none>2009-01-22 22:35:23 +0100
committerBlaymoira <none@none>2009-01-22 22:35:23 +0100
commit946e3b55f1bfd9c77705dc2542a185b7051e7250 (patch)
treeb80c74fc8e0189fe0078139bf9a031278ec5afd2 /sql
parenta3f8a7634e1b2ec5cb38a2cab2381a49c53cb4a1 (diff)
*Convert text to database in moonglade
--HG-- branch : trunk
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/953_world_scripts.sql9
-rw-r--r--sql/updates/CMakeLists.txt1
2 files changed, 10 insertions, 0 deletions
diff --git a/sql/updates/953_world_scripts.sql b/sql/updates/953_world_scripts.sql
new file mode 100644
index 00000000000..3811b6a98cf
--- /dev/null
+++ b/sql/updates/953_world_scripts.sql
@@ -0,0 +1,9 @@
+DELETE FROM script_texts where entry BETWEEN -1000292 and -1000286;
+INSERT INTO script_texts (entry, content_default, type, emote, comment) VALUES
+(-1000286, 'A shadowy, sinister presence has invader the Emerald Dream. Its power is poised to spill over into our world, $N. We must oppose it! That\'s why I cannot accompany you in person.', 0, 0, 'clintar_spirit'),
+(-1000287, 'The Emerald Dream will never be yours!', 0, 0, 'clintar_spirit'),
+(-1000288, 'Begone from this place!', 0, 0, 'clintar_spirit'),
+(-1000289, 'That\'s the first relic, but there are still two more. Follow me, $N.', 0, 0, 'clintar_spirit'),
+(-1000290, 'I\'ve recovered the second relic. Take a moment to rest, and then we\'ll continue to the last reliquary.', 0, 0, 'clintar_spirit'),
+(-1000291, 'We have all three of the relics, but my energy is rapidly fading. We must make our way back to Dreamwarden Lurosa! He will let you know what to do next.', 0, 0, 'clintar_spirit'),
+(-1000292, 'Lurosa, I am entrusting the Relics of Aviana to $N, who will take them to Morthis Whisperwing. I must return completely to the Emerald Dream now. Do not let $N fail!', 0, 0, 'clintar_spirit'); \ No newline at end of file
diff --git a/sql/updates/CMakeLists.txt b/sql/updates/CMakeLists.txt
index 7e484b1aae2..dae6a56b69d 100644
--- a/sql/updates/CMakeLists.txt
+++ b/sql/updates/CMakeLists.txt
@@ -152,4 +152,5 @@ INSTALL(FILES
950_world_scripts.sql
951_world_scripts.sql
952_world_scripts.sql
+953_world_scripts.sql
DESTINATION share/trinity/sql/updates)