diff options
| author | ModoX <moardox@gmail.com> | 2021-10-12 00:16:20 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-12 00:16:20 +0200 |
| commit | 6d9ce8e8baa100ecc7650d0ae56037c131bab2e0 (patch) | |
| tree | 911d162cb936f3e7bc7c79dfe79b7f6002aee8a7 /sql | |
| parent | 9b036b8fe0c443acd882de9faf615abe89dad691 (diff) | |
Core/PacketIO: Implemented CMSG_CONVERSATION_LINE_STARTED (#27036)
* Added OnConversationLineStarted hook to ConversationScripts
* Added example for Defender of Azeroth conversation
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/master/2021_10_12_00_world.sql | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_10_12_00_world.sql b/sql/updates/world/master/2021_10_12_00_world.sql new file mode 100644 index 00000000000..160a65769ec --- /dev/null +++ b/sql/updates/world/master/2021_10_12_00_world.sql @@ -0,0 +1,18 @@ +-- +DELETE FROM `conversation_line_template` WHERE `Id` IN (32915, 32916, 32917, 32918, 32919, 32926); +INSERT INTO `conversation_line_template` (`Id`, `StartTime`, `UiCameraID`, `ActorIdx`, `Flags`, `VerifiedBuild`) VALUES +(32915, 0, 0, 0, 0, 40120), +(32916, 9878, 0, 0, 0, 40120), +(32917, 22389, 0, 0, 0, 40120), +(32918, 33855, 0, 0, 0, 40120), +(32919, 43842, 0, 0, 0, 40120), +(32926, 55409, 0, 1, 1, 40120); + +DELETE FROM `conversation_template` WHERE `Id`=13254; +INSERT INTO `conversation_template` (`Id`, `FirstLineID`, `LastLineEndTime`, `TextureKitId`, `ScriptName`, `VerifiedBuild`) VALUES +(13254, 32915, 55409, 0, 'conversation_allied_race_dk_defender_of_azeroth', 40120); + +DELETE FROM `conversation_actors` WHERE (`ConversationId`=13254 AND `Idx`=0); +INSERT INTO `conversation_actors` (`ConversationId`, `ConversationActorId`, `ConversationActorGuid`, `Idx`, `VerifiedBuild`) VALUES +-- (13254, 0, 0, 1, 40120), -- Full: 0x0800040000000000FFFFFFFFFFFFFFFF Player/0 R1/S16777215 Map: 0 (Eastern Kingdoms) Low: 1099511627775 +(13254, 74042, 1050053, 0, 40120); -- Full: 0x203AF51F209DEB400009E0000059DA73 Creature/0 R3773/S2528 Map: 2297 (Icecrown Citadel (8.3)) Entry: 161709 (Highlord Darion Mograine) Low: 5888627 |
