What's new
  • Happy Cataclysm gaming! The long-awaited 4.3.4 Cataclysm Repack V19.0 is now live - and downloadable from our brand-new Emucoach App.
    Download it now
  • Mists of Pandaria is calling! Heya - did you know that the newest 5.4.8 MoP Repack - version 7.0 - is now live?
    Download now

Mutually Exclusive Quests

orangefire

Gold Supporter
Veteran Member
112
2021
98
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);
 
Back
Top