What's new

27472 Rise, Godfrey

eyerobot

Gold Supporter
Superior Member
916
2015
24
Location
Barryton Michigan USA
This is a temp fix for this quest. It leaves out the entire scenario, but gives quest credit. The Involved spells do not work yet, So I did this instead.

Code:
-- 27472 Rise, Godfrey

-- The great escape should not change phase until rise godfrey is finished


-- 45525 Sylvanas 300018 Quest Giver
-- 45617 Sylvanas Quest Ender
-- 45312 Belmont
-- 46125 Cromosh 31453
-- 44632 Dark Ranger 300019 300020
-- 

-- 59074 Phase 2
-- 81080 Detect Quest Invis Zone 8
-- 85149 Summon forsaken Actors Non Working
-- 85206 cancel 85149

-- 4706 Ruins of Gilneas
-- 5436 Tempest Reach
-- 130 Silverpine Forest
-- 5387 The Forsaken Front

-- 45312 Belmont
DELETE FROM `smart_scripts` WHERE (`entryorguid`=45312 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`, `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 
(45312, 0, 0, 0, 19, 0, 100, 0, 27406, 0, 0, 0, 85, 59074, 2, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Deathstalker Commander Belmont - On quest accept - invoker Cast spell 59074"),
(45312, 0, 1, 0, 19, 0, 100, 0, 27438, 0, 0, 0, 85, 59074, 2, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "Deathstalker Commander Belmont - On quest accept - invoker Cast spell 59074");

-- Set Phase On Npc's
UPDATE `creature` SET `phaseMask`='1' WHERE  `guid`=300018;
UPDATE `creature` SET `phaseMask`='1' WHERE  `guid`=31453;
UPDATE `creature` SET `phaseMask`='1' WHERE  `guid`=300019;
UPDATE `creature` SET `phaseMask`='1' WHERE  `guid`=300020;

-- 45525 Sylvanas 300018 Quest Giver
UPDATE `creature_template` SET `AIName` = 'SmartAI' WHERE `entry` = 45525;

DELETE FROM `smart_scripts` WHERE (`entryorguid`=45525 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`, `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 
(45525, 0, 0, 0, 19, 0, 100, 0, 27472, 0, 0, 0, 1, 0, 2000, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "On Quest Accept - Say 0"),
(45525, 0, 1, 2, 52, 0, 100, 0, 0, 45525, 0, 0, 33, 45617, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "On Text Over - Kill Credit"),
(45525, 0, 2, 0, 61, 0, 100, 0, 0, 0, 0, 0, 28, 59074, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "On Quest Accept - Remove Aura 59074 From Invoker");

DELETE FROM `creature_text` WHERE `entry`=45525 AND `groupid`=0 AND `id`=0;
INSERT INTO `creature_text` (`entry`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `BroadcastTextId`, `comment`) VALUES (45525, 0, 0, 'Lady Sylvanas Windrunner says: Rise, Lord Vincent Godfrey. Be reborn as an instrument of my vengeance!', 12, 0, 100, 0, 2000, 0, 0, 'Sylvanas');
 
Top