What's new

Disable Bugged quest of Thrall 29326

pedroevil51

Gold Supporter
Senior User
155
2017
1
INSERT INTO disables
(sourceType, entry, flags, params_0, params_1, `comment`)
VALUES (1, 29326, 0, '', '', 'Quest bugada thrall')

Gossip its not activated, and when available does nothing. i Disabled the quest because auto complete does not work.
 

eyerobot

Gold Supporter
Superior Member
916
2015
24
Location
Barryton Michigan USA
That would be a pretty big script to make that work.
The quest requires 54306 intro scene quest credit to complete. Have you tried adding a small script to Thrall 54313 to complete it, So you don't lose a quest from loremaster achievement?
 

pedroevil51

Gold Supporter
Senior User
155
2017
1
That would be a pretty big script to make that work.
The quest requires 54306 intro scene quest credit to complete. Have you tried adding a small script to Thrall 54313 to complete it, So you don't lose a quest from loremaster achievement?

Dunno how to, is there a script to complete the quest ?
 

eyerobot

Gold Supporter
Superior Member
916
2015
24
Location
Barryton Michigan USA
Well disabling a quest that has not been abandoned by blizzard is out of the question. And since it's not currently scripted. You would have to add a smart script to thrall that gives quest credit. https://trinitycore.atlassian.net/wiki/spaces/tc/pages/2130108/smart+scripts#smart_scripts-event_chance

That means you have to fix his gossip menu options, Add a script to him that says, On gossip select 0 call killed monster credit 54306 on Invoker. At least then it could be completed. I noticed that it's listed as repeatable. You may want to double check that to make sure.

Anyway, This is untested by me, Try it and see if it works. If it does, Then submit it as a temp fix, Until a full blown script can be written for it.

Code:
-- 29326 The Nordrassil Summit

-- 54313 Thrall
UPDATE `creature_template` SET `AIName` = 'SmartAI' WHERE `entry` = 54313;

DELETE FROM `gossip_menu_option` WHERE `menu_id`=12991 AND `id`=0;
INSERT INTO `gossip_menu_option` (`menu_id`, `id`, `option_icon`, `option_text`, `option_id`, `npc_option_npcflag`, `action_menu_id`, `action_poi_id`, `box_coded`, `box_money`, `box_text`, `OptionbroadCastTextId`, `BoxBroadcastTextId`) VALUES (12991, 0, 0, 'I am ready.', 1, 1, 0, 0, 0, 0, '', NULL, NULL);

DELETE FROM `smart_scripts` WHERE (`entryorguid`=54313 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 
(54313, 0, 0, 0, 62, 0, 100, 0, 12991, 0, 0, 0, 33, 54306, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, "On Gossip Select 0 - Call Killed Monster Credit On Invoker");
 
Top