fix(DB/Creature): Sniffed Values for 25924 'Twilight Speaker Viktor' (#18273)

This commit is contained in:
sudlud
2024-02-05 17:07:17 +01:00
committed by GitHub
parent 9ad39d8e21
commit 74222d364f

View File

@@ -0,0 +1,9 @@
-- Update creature 25924 'Twilight Speaker Viktor' with sniffed values
-- updated spawns
DELETE FROM `creature` WHERE (`id1` = 25924) AND (`guid` IN (245626));
INSERT INTO `creature` (`guid`, `id1`, `map`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `ScriptName`, `VerifiedBuild`, `CreateObject`, `Comment`) VALUES
(245626, 25924, 1, 1, 1, 1, 3922.167236328125, 789.5479736328125, 9.14093780517578125, 0.78539818525314331, 120, 0, 0, 0, 0, 0, "", 50063, 1, NULL);
-- enable all spawns for eventEntry 1
DELETE FROM `game_event_creature` WHERE (`eventEntry` = 1) AND (`guid` IN (SELECT `guid` FROM `creature` WHERE `id1` = 25924));
INSERT INTO `game_event_creature` (SELECT 1, `guid` FROM `creature` WHERE `id1` = 25924);