mirror of
https://github.com/ZhengPeiRu21/mod-individual-progression
synced 2025-11-29 23:44:51 +08:00
Merge pull request #124 from Gentil-peon/fix/various-fixes
Various minor fixes
This commit is contained in:
@@ -45,7 +45,7 @@ UPDATE `creature_loot_template` SET `Chance` = 5 WHERE `Item` = 21146;
|
||||
UPDATE `creature_loot_template` SET `Chance` = 5 WHERE `Item` = 21147;
|
||||
UPDATE `creature_loot_template` SET `Chance` = 5 WHERE `Item` = 21148;
|
||||
|
||||
-- FIx drop rate for Narain's Scrying Goggles
|
||||
-- Fix drop rate for Narain's Scrying Goggles
|
||||
UPDATE `creature_loot_template` SET `Chance` = 2 WHERE `Item` = 20951;
|
||||
|
||||
-- New 'Bang a Gong!' quest. No rewards for completing this version. No mount, no title. Currently the Mallet of Zul'Farrak is required to bang the gong.
|
||||
|
||||
@@ -199,7 +199,7 @@ INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`,
|
||||
|
||||
-- Legionnaire Teena
|
||||
DELETE FROM `creature` WHERE `id1`=12788;
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (12788, 1, 1651.22, -4213.42, 55.4372, 0.427786, 25);
|
||||
INSERT INTO `creature` (`id1`, `map`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`) VALUES (12788, 1, 1650.95, -4212.82, 55.439, 0.182965, 25);
|
||||
|
||||
-- Lady Palanseer <Armor Quartermaster>
|
||||
DELETE FROM `creature` WHERE `id1`=34043;
|
||||
|
||||
@@ -22,9 +22,20 @@ UPDATE `creature_template` SET `ScriptName` = 'npc_ipp_tbc' WHERE `entry` IN (
|
||||
22931, -- Gorrim, Emerald Sanctuary, Flight Master
|
||||
24366, -- Nizzle, Rebel Camp, Flight Master
|
||||
27705, -- Lorrin Foxfire, Stonard
|
||||
29093, -- Ian Drake, Stormwind
|
||||
29095, -- Edward Cairn, Undercity
|
||||
37888, -- Frax Bucketdrop, Thondroril River, Flight Master
|
||||
37915 -- Timothy Cunningham, The Bulwark, Flight Master
|
||||
);
|
||||
|
||||
UPDATE `creature` SET `ScriptName` = 'npc_ipp_tbc' WHERE `id1` IN (
|
||||
12788, -- Legionnaire Teena
|
||||
19850 -- Councilor Arial D'Anastasis
|
||||
) AND `map` = 1; -- Orgrimmar only
|
||||
|
||||
UPDATE `creature` SET `ScriptName` = 'npc_ipp_tbc' WHERE `id1` = 19848 -- Harbinger Ennarth
|
||||
AND `map` = 0; -- Stormwind only
|
||||
|
||||
-- fix bad phasing for Wrathscale Myrmidon, Azuremyst Isle
|
||||
UPDATE `creature_template` SET `ScriptName` = '' WHERE `entry` = 17194;
|
||||
|
||||
@@ -34,6 +45,9 @@ UPDATE `creature_template` SET `ScriptName` = '' WHERE `entry` = 17194;
|
||||
16227 -- Bragok, Ratchet, Flight Master
|
||||
); */
|
||||
|
||||
-- Outland map outside Dark Portal
|
||||
UPDATE `gameobject` SET `ScriptName` = 'gobject_ipp_tbc' WHERE `guid` = 42457;
|
||||
|
||||
-- remove interactions between Cersei, Lorrin and the orcs in Stonard
|
||||
UPDATE `creature_template` SET `AIName` = '' WHERE `entry` IN (12807, 17109, 27705);
|
||||
|
||||
@@ -47,7 +61,7 @@ UPDATE `gameobject` SET `ScriptName` = 'gobject_ipp_wotlk' WHERE `guid` IN (347,
|
||||
UPDATE `gameobject` SET `ScriptName` = 'gobject_ipp_tbc' WHERE `guid` = 49832; -- Darnassus
|
||||
|
||||
UPDATE `gameobject` SET `ScriptName` = 'gobject_ipp_wotlk' WHERE `guid` IN (
|
||||
150747, 150748, 150749, 150750, 150751, 150752, 150753, -- Orgrimmar
|
||||
150747, 150748, 150749, 150750, 150751, 150752, 150753, 150755, -- Orgrimmar
|
||||
100500, 100501, 100502, 100503, 268683, -- Undercity
|
||||
932, 933, 100156, 100157, 100158, 100159, 100505, 100506, 150736, 150737, 150738, 150740, 150742, 150743, 150744, 150746, 151239, -- Stormwind
|
||||
121574 -- Darnassus
|
||||
|
||||
Reference in New Issue
Block a user