diff options
| author | Venugh <venugh@gmx.net> | 2012-01-14 00:20:03 +0100 |
|---|---|---|
| committer | Venugh <venugh@gmx.net> | 2012-01-14 00:20:03 +0100 |
| commit | 46d1736d0dcbed8d41a892adb514ae99c7392de3 (patch) | |
| tree | ce767ad7dee5dd26eb77b1f9a8a5d2fbdbd5bc88 /sql | |
| parent | c548f4ea7384e42a7ddf6d7ed46c1fce8ef591da (diff) | |
Core/Scripts: Convert Torek script_texts to creature_text.
Apply coding style in it.
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/2012_01_13_06_world_creature_text.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sql/updates/world/2012_01_13_06_world_creature_text.sql b/sql/updates/world/2012_01_13_06_world_creature_text.sql new file mode 100644 index 00000000000..8ad3ab63443 --- /dev/null +++ b/sql/updates/world/2012_01_13_06_world_creature_text.sql @@ -0,0 +1,10 @@ +-- Remove old script text for npc_torek +DELETE FROM `script_texts` WHERE `entry` IN (-1000106, -1000110); + +-- Add creature texts for Torek +INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES +(12858, 0, 0, 'Everyone ready?', 0, 0, 100, 0, 0, 0, 'Torek'), +(12858, 1, 0, 'Ok, Lets move out!', 0, 0, 100, 0, 0, 0, 'Torek'), +(12858, 2, 0, 'Prepare yourselves. Silverwing is just around the bend.', 0, 0, 100, 0, 0, 0, 'Torek'), +(12858, 3, 0, 'Silverwing is ours!', 0, 0, 100, 0, 0, 0, 'Torek'), +(12858, 4, 0, 'Go report that the outpost is taken. We will remain here.', 0, 0, 100, 0, 0, 0, 'Torek'); |
