-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TODO: Add Death Knight Starting Zone Quests #38
Comments
Really the one special quest dealing with worgen and goblin is that one questline where u murder the friend at the chapel. |
That's what I thought, still needs implementing. |
Looks like this requires adding to the .patch file, as that particular quest seems to be handled at least partially in the core. |
bool MeetQuestCondition(Player* player)
{
switch (me->GetEntry())
{
case 29061: // Ellen Stanbridge
if (player->GetQuestStatus(12742) == QUEST_STATUS_INCOMPLETE)
return true;
break;
case 29072: // Kug Ironjaw
if (player->GetQuestStatus(12748) == QUEST_STATUS_INCOMPLETE)
return true;
break;
case 29067: // Donovan Pulfrost
if (player->GetQuestStatus(12744) == QUEST_STATUS_INCOMPLETE)
return true;
break;
case 29065: // Yazmina Oakenthorn
if (player->GetQuestStatus(12743) == QUEST_STATUS_INCOMPLETE)
return true;
break;
case 29071: // Antoine Brack
if (player->GetQuestStatus(12750) == QUEST_STATUS_INCOMPLETE)
return true;
break;
case 29032: // Malar Bravehorn
if (player->GetQuestStatus(12739) == QUEST_STATUS_INCOMPLETE)
return true;
break;
case 29068: // Goby Blastenheimer
if (player->GetQuestStatus(12745) == QUEST_STATUS_INCOMPLETE)
return true;
break;
case 29073: // Iggy Darktusk
if (player->GetQuestStatus(12749) == QUEST_STATUS_INCOMPLETE)
return true;
break;
case 29074: // Lady Eonys
if (player->GetQuestStatus(12747) == QUEST_STATUS_INCOMPLETE)
return true;
break;
case 29070: // Valok the Righteous
if (player->GetQuestStatus(12746) == QUEST_STATUS_INCOMPLETE)
return true;
break;
// case 49355: // Lord Harford
// if (player->GetQuestStatus(28649) == QUEST_STATUS_INCOMPLETE)
// return true;
// break;
// case 49356: // Gally Lumpstain
// if (player->GetQuestStatus(28650) == QUEST_STATUS_INCOMPLETE)
// return true;
// break;
}
return false;
} These are the lines that need changing in the scarlet enclave script. I will add the changes to the patch file once this PR gets merged, otherwise all the rest of the changes required for this are all done. |
Gotta get em workin for @acidmanifesto 😄
The text was updated successfully, but these errors were encountered: