diff options
| author | Malcrom <malcromdev@gmail.com> | 2013-06-25 15:36:16 -0230 |
|---|---|---|
| committer | Malcrom <malcromdev@gmail.com> | 2013-06-25 15:36:16 -0230 |
| commit | 1149292fe1a8dd221cf44d842c28ba6b2ad99889 (patch) | |
| tree | 01b08357aa6a3baa574758bd4bcae58090802897 /sql | |
| parent | f5e073ddec54e3ae6548b4f4b92be661c927b28b (diff) | |
Core/Scripting: More fixes and updates for BRS Instance.
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/2013_06_25_05_world_misc.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/updates/world/2013_06_25_05_world_misc.sql b/sql/updates/world/2013_06_25_05_world_misc.sql new file mode 100644 index 00000000000..378b362aa83 --- /dev/null +++ b/sql/updates/world/2013_06_25_05_world_misc.sql @@ -0,0 +1,12 @@ +DELETE FROM `areatrigger_scripts` WHERE `entry` IN (2046,2026); +INSERT INTO `areatrigger_scripts` (`entry`,`ScriptName`) VALUES +(2046, 'at_dragonspire_hall'), +(2026, 'at_blackrock_stadium'); + +-- Warchief Rend Blackhand text +SET @REND := 10429; +DELETE FROM `creature_text` WHERE `entry` IN (@REND); +INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES +(@REND,0,0,"Impossible!",14,0,100,22,0,0,'Warchief Rend Blackhand'), +(@REND,1,0,"With pleasure...",14,0,100,0,0,0,'Warchief Rend Blackhand'), +(@REND,2,0,"%s is knocked off his drake!",16,0,100,0,0,0,'Warchief Rend Blackhand'); |
