diff options
author | ZenoX92 <ZenoX92@users.noreply.github.com> | 2019-05-13 01:16:43 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-12-05 15:39:32 +0100 |
commit | 1a8d30bf14651c08f5b93f025e4608f46339f6c2 (patch) | |
tree | eb8c06c181774c16cae0b82874ed5dc1e2ef038b | |
parent | 09ec99e6d06e99f0f59c64b5e2aa5ebfd1498386 (diff) |
DB/Quest: Rite of Vision (Part 3) (Improvements)
Closes #23266
(cherry picked from commit 451957f78cd4f183f75aba4c79baa4a6742330ce)
-rw-r--r-- | sql/updates/world/master/2021_12_05_19_world_2019_05_13_02_world_335.sql | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_12_05_19_world_2019_05_13_02_world_335.sql b/sql/updates/world/master/2021_12_05_19_world_2019_05_13_02_world_335.sql new file mode 100644 index 00000000000..5a7caf527c7 --- /dev/null +++ b/sql/updates/world/master/2021_12_05_19_world_2019_05_13_02_world_335.sql @@ -0,0 +1,16 @@ +-- The Plains Vision +DELETE FROM `creature_text` WHERE `CreatureID`=2983 AND `GroupID`=0; -- Remove wrong text +UPDATE `creature_text` SET `Emote`=393, `Sound`=1018 WHERE `CreatureID`=2983 AND `GroupID` IN (1,2); + +DELETE FROM `smart_scripts` WHERE `entryorguid`=298301 AND `source_type`=9 AND `id`=1; -- Remove wrong text +UPDATE `smart_scripts` SET `event_param1`=1000, `event_param2`=1000 WHERE `entryorguid`=298301 AND `source_type`=9 AND `id`=2; -- Adjust timings +UPDATE `smart_scripts` SET `action_param1`=5000, `comment`="The Plains Vision - On Waypoint 49 Reached - Despawn In 5000 ms" WHERE `entryorguid`=2983 AND `source_type`=0 AND `id`=3; -- Increase despawn time + +-- Seer Wiserunner +DELETE FROM `smart_scripts` WHERE `entryorguid`=2984 AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `event_param5`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(2984,0,0,0,10,0,100,0,1,5,30000,30000,1,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,"Seer Wiserunner - OOC LOS - Say Line 0"); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceEntry`=2984; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(22,1,2984,0,0,28,0,772,0,0,0,0,0,"","SAI triggers only if player has quest 'Rite of Vision (Part 3)' completed"); |