aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/948_world_scripts.sql5
-rw-r--r--sql/updates/CMakeLists.txt1
2 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/948_world_scripts.sql b/sql/updates/948_world_scripts.sql
new file mode 100644
index 00000000000..5f8f74cb5c0
--- /dev/null
+++ b/sql/updates/948_world_scripts.sql
@@ -0,0 +1,5 @@
+DELETE FROM script_texts WHERE entry BETWEEN -1000247 and -1000245;
+INSERT INTO script_texts (entry, content_default, type, comment) VALUES
+(-1000245, 'You, there! Hand over that moonstone and nobody gets hurt!', 1, 'SAY_RIZZLE_START'),
+(-1000246, 'Just chill!', 4, 'SAY_RIZZLE_GRENADE'),
+(-1000247, 'All right, you win! I surrender! Just don\'t hurt me!', 1, 'SAY_RIZZLE_FINAL'); \ No newline at end of file
diff --git a/sql/updates/CMakeLists.txt b/sql/updates/CMakeLists.txt
index c8bee248382..0fdd0e7640c 100644
--- a/sql/updates/CMakeLists.txt
+++ b/sql/updates/CMakeLists.txt
@@ -148,4 +148,5 @@ INSTALL(FILES
940_world_scripts.sql
945_world_scripts.sql
947_world_scripts.sql
+948_world_scripts.sql
DESTINATION share/trinity/sql/updates)