What's new

Mutually Exclusive Quests

orangefire

Gold Supporter
MoP Premium
Veteran Member
112
2021
91
In the uninstanced Temple of the Jade Serpent, Fei is supposed to offer two quests, and then a third after completing these. Unfortunately the exclusive groups were set to positive instead of negative numbers for these, which meant you could only do one of the two and be locked out of the other. (And then immediately advanced to the third once you completed either of the first two.)

Luckily was an easy fix to make it work as intended.

`
SQL:
UPDATE `quest_template` SET `ExclusiveGroup`=-29999 WHERE `Id` IN (30005, 29999);

Same problem later on with Lorewalker Stonestep's quests. This time with the added issue of Bookworms not being attackable which made Pages of History incompletable.

`
SQL:
UPDATE `quest_template` SET `ExclusiveGroup`=-30001 WHERE  `Id` IN (30001, 30002);
UPDATE creature_template SET faction_A = 7, faction_H = 7 WHERE entry IN (57237);
 
Top