mirror of
https://github.com/azerothcore/azerothcore-wotlk.git
synced 2025-11-10 21:04:26 +08:00
Compare commits
21 Commits
0137accd01
...
7f14636a46
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7f14636a46 | ||
|
|
0eba51c73b | ||
|
|
18c7d705cf | ||
|
|
ac7e896ec8 | ||
|
|
045ce0785d | ||
|
|
94be21c85b | ||
|
|
b57b31c4de | ||
|
|
a5dcdf4fe1 | ||
|
|
c9c3af8d3f | ||
|
|
8fe081f3e4 | ||
|
|
b54e283e26 | ||
|
|
b97b0450b0 | ||
|
|
643b795f98 | ||
|
|
13ceca4111 | ||
|
|
8b589388e3 | ||
|
|
73db7585e4 | ||
|
|
0dac96f9a5 | ||
|
|
f5e59bd574 | ||
|
|
c773f2a25d | ||
|
|
b3e20b5000 | ||
|
|
a255c17062 |
@ -0,0 +1,24 @@
|
||||
--
|
||||
SET @CGUID := 20861;
|
||||
DELETE FROM `creature` WHERE (`id1` = 31881) AND (`guid` = @CGUID);
|
||||
INSERT INTO `creature` (`guid`, `id1`, `id2`, `id3`, `map`, `zoneId`, `areaId`, `spawnMask`, `phaseMask`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `wander_distance`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `ScriptName`, `Comment`, `VerifiedBuild`) VALUES
|
||||
(@CGUID, 31881, 0, 0, 571, 0, 0, 1, 1, 0, 7505.81, 1707.04, 350.194, 1.53589, 300, 0, 0, 63000, 0, 0, 0, 0, 0, '', '', 0);
|
||||
|
||||
UPDATE `creature_template` SET `ArmorModifier` = 0 WHERE (`entry` = 32227);
|
||||
|
||||
-- Disable Gravity, allows Parachute on exit
|
||||
DELETE FROM `creature_template_movement` WHERE (`CreatureId` IN (31884, 32227));
|
||||
INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`, `Chase`, `Random`, `InteractionPauseTimer`) VALUES
|
||||
(31884, 0, 0, 1, 0, 0, 0, 0),
|
||||
(32227, 0, 0, 1, 0, 0, 0, 0);
|
||||
|
||||
DELETE FROM `conditions` WHERE (`SourceTypeOrReferenceId` = 18) AND (`SourceGroup` IN (31884, 32227)) AND (`SourceEntry` = 46598) AND (`SourceId` = 0);
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(18, 31884, 46598, 0, 0, 9, 0, 13310, 0, 0, 0, 0, 0, '', 'Kor\'kron Suppression Turret requires player to be on quest Assault by Air'),
|
||||
(18, 32227, 46598, 0, 0, 9, 0, 13309, 0, 0, 0, 0, 0, '', 'Skybreaker Suppression Turret requires player to be on quest Assault by Air');
|
||||
|
||||
UPDATE `vehicle_template_accessory` SET `summontype`=5 WHERE `entry`=31881 AND `seat_id`=1;
|
||||
UPDATE `vehicle_template_accessory` SET `summontype`=5 WHERE `entry`=32225 AND `seat_id`=1;
|
||||
|
||||
-- Prevent vehicle and passengers to attack players from the opposite faction
|
||||
UPDATE `creature_template` SET `unit_flags` = `unit_flags` | 256 WHERE (`entry` IN (32225, 31881, 31882, 31891, 32223, 32225));
|
||||
Loading…
x
Reference in New Issue
Block a user