aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorBlaymoira <none@none>2009-01-22 20:24:32 +0100
committerBlaymoira <none@none>2009-01-22 20:24:32 +0100
commit405b07855cc221c96fd910157acf19fbb9fc586e (patch)
tree7b1284affa55a1d283f6403a42819c6a514aded4 /sql
parent8849fe2d65cb25b73d89aef7186ec076eef361ee (diff)
*Converted texto to database in azshara
--HG-- branch : trunk
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)