diff options
author | Malcrom <malcromdev@gmail.com> | 2013-01-07 16:12:49 -0330 |
---|---|---|
committer | Malcrom <malcromdev@gmail.com> | 2013-01-07 16:12:49 -0330 |
commit | 609232dfbeb7940163bc00c4b6fa53d07afa47a8 (patch) | |
tree | 51fa923dda4f62e0eaa0fb14d5d36cfe220bcabc | |
parent | 74b4dbec3f34968577fa93ab533847330a25eba2 (diff) |
Core/Scripting: Move Text for Archavon the Stone Watcher to creature text
-rw-r--r-- | sql/updates/world/2013_01_07_05_world_creature_text.sql | 4 | ||||
-rw-r--r-- | src/server/scripts/Northrend/VaultOfArchavon/boss_archavon.cpp | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/sql/updates/world/2013_01_07_05_world_creature_text.sql b/sql/updates/world/2013_01_07_05_world_creature_text.sql new file mode 100644 index 00000000000..d9d91e784ba --- /dev/null +++ b/sql/updates/world/2013_01_07_05_world_creature_text.sql @@ -0,0 +1,4 @@ +-- Texts for Archavon the Stone Watcher +DELETE FROM `creature_text` WHERE `entry`= 31125 AND `groupid`=1; +INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES +(31125,1,0, 'Archavon the Stone Watcher lunges for $N!',16,0,100,0,0,0, 'Archavon the Stone Watcher Leap Emote'); diff --git a/src/server/scripts/Northrend/VaultOfArchavon/boss_archavon.cpp b/src/server/scripts/Northrend/VaultOfArchavon/boss_archavon.cpp index dc9665ae27b..33e0619c7e5 100644 --- a/src/server/scripts/Northrend/VaultOfArchavon/boss_archavon.cpp +++ b/src/server/scripts/Northrend/VaultOfArchavon/boss_archavon.cpp @@ -21,7 +21,8 @@ enum { - EMOTE_BERSERK = 0 + EMOTE_BERSERK = 0, + EMOTE_LEAP = 1 // Not in use }; //Spells Archavon @@ -38,9 +39,6 @@ enum //4 Warders spawned #define ARCHAVON_WARDER 32353 //npc 32353 -//Yell -#define SAY_LEAP "Archavon the Stone Watcher lunges for $N!" //$N should be the target - enum Events { // Archavon |