diff options
-rw-r--r-- | sql/FULL/world_script_texts.sql | 3 | ||||
-rw-r--r-- | sql/updates/5217_world_scripts.sql | 3 | ||||
-rw-r--r-- | src/bindings/scripts/scripts/kalimdor/darkshore.cpp | 2 |
3 files changed, 7 insertions, 1 deletions
diff --git a/sql/FULL/world_script_texts.sql b/sql/FULL/world_script_texts.sql index c7b8b9e6728..7af18b21cbf 100644 --- a/sql/FULL/world_script_texts.sql +++ b/sql/FULL/world_script_texts.sql @@ -386,7 +386,8 @@ INSERT INTO `script_texts` (`entry`, `content_default`, `content_loc1`, `content (-1000441,'You don\'t mind if I stop here for a moment, do you?', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,0,0,0,0,'kerlonian SAY_KER_SLEEP_4'), (-1000442,'Be on the alert! The Blackwood furbolgs are numerous in the area...', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,0,0,0,0,'kerlonian SAY_KER_ALERT_1'), (-1000443,'It\'s quiet... Too quiet...', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,0,0,0,0,'kerlonian SAY_KER_ALERT_2'), -(-1000444,'Oh, I can see Liladris from here... Tell her I\'m here, won\'t you?', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,0,0,0,0,'kerlonian SAY_KER_END'); +(-1000444,'Oh, I can see Liladris from here... Tell her I\'m here, won\'t you?', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,0,0,0,0,'kerlonian SAY_KER_END'), +(-1000445,'%s wakes up!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,0,2,0,0,'kerlonian EMOTE_KER_AWAKEN'); -- -1 033 000 SHADOWFANG KEEP INSERT INTO `script_texts` (`entry`, `content_default`, `content_loc1`, `content_loc2`, `content_loc3`, `content_loc4`, `content_loc5`, `content_loc6`, `content_loc7`, `content_loc8`, `sound`, `type`, `language`, `emote`, `comment`) VALUES diff --git a/sql/updates/5217_world_scripts.sql b/sql/updates/5217_world_scripts.sql new file mode 100644 index 00000000000..2cc8543a948 --- /dev/null +++ b/sql/updates/5217_world_scripts.sql @@ -0,0 +1,3 @@ +DELETE FROM script_texts WHERE entry=-1000445; +INSERT INTO script_texts (entry,content_default,sound,type,language,emote,comment) VALUES +(-1000445,'%s wakes up!',0,2,0,0,'kerlonian EMOTE_KER_AWAKEN'); diff --git a/src/bindings/scripts/scripts/kalimdor/darkshore.cpp b/src/bindings/scripts/scripts/kalimdor/darkshore.cpp index a283d2160f0..205d490bc81 100644 --- a/src/bindings/scripts/scripts/kalimdor/darkshore.cpp +++ b/src/bindings/scripts/scripts/kalimdor/darkshore.cpp @@ -48,6 +48,8 @@ enum SAY_KER_SLEEP_3 = -1000440, SAY_KER_SLEEP_4 = -1000441, + EMOTE_KER_AWAKEN = -1000445, + SAY_KER_ALERT_1 = -1000442, SAY_KER_ALERT_2 = -1000443, |