-
Notifications
You must be signed in to change notification settings - Fork 98
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
Dead Man's Plea #537
Comments
void instance_stratholme::OnPlayerEnter(Player* player)
{
// Baron ultimatum succeeded: summon Ysida outside the cage alive
if (GetData(TYPE_BARON_RUN) == DONE)
player->SummonCreature(NPC_YSIDA, stratholmeLocation[8].m_fX, stratholmeLocation[8].m_fY, stratholmeLocation[8].m_fZ, stratholmeLocation[8].m_fO, TEMPSPAWN_DEAD_DESPAWN, 0);
// Baron ultimatum failed: summon Ysida outside the cage dead
else if (GetData(TYPE_BARON_RUN) == FAIL)
{
if (Creature* ysida = player->SummonCreature(NPC_YSIDA, stratholmeLocation[8].m_fX, stratholmeLocation[8].m_fY, stratholmeLocation[8].m_fZ, stratholmeLocation[8].m_fO, TEMPSPAWN_DEAD_DESPAWN, 0))
ysida->SetDeadByDefault(true);
}
} case TYPE_BARON_RUN:
switch (data)
{
case IN_PROGRESS:
if (m_auiEncounter[type] == IN_PROGRESS || m_auiEncounter[type] == FAIL)
break;
// Baron ultimatum starts: summon Ysida in the cage
if (Creature* pBaron = GetSingleCreatureFromStorage(NPC_BARON))
{
DoOrSimulateScriptTextForThisInstance(SAY_ANNOUNCE_RUN_START, NPC_BARON);
if (Creature* pYsida = pBaron->SummonCreature(NPC_YSIDA, stratholmeLocation[7].m_fX, stratholmeLocation[7].m_fY, stratholmeLocation[7].m_fZ, stratholmeLocation[7].m_fO, TEMPSPAWN_DEAD_DESPAWN, 0))
pYsida->RemoveFlag(UNIT_NPC_FLAGS, UNIT_NPC_FLAG_QUESTGIVER | UNIT_NPC_FLAG_GOSSIP);
}
m_baronRunTimer = 45 * MINUTE * IN_MILLISECONDS; |
Hello @Grz3s can you check this plx? |
sd2 script exist in wotlk .. whats the problem? |
as my earlier run,,, quest ender was not available after baron kill( |
and all conditions like 45min timer etc...are known for you right? |
you mean that i must be in 45 min timer? yes i am on..the problem with doors still persists( |
I made movie with full run. from the non-normal things i have a custom ring (with+ hp ap etc) shown at beginning. |
@Grz3s Can you check it please?( |
@Grz3s Still no solution?(( |
https://www.wowhead.com/classic/quest=8945/dead-mans-plea
questender missed
https://www.wowhead.com/classic/npc=16031/ysida-harmon
The text was updated successfully, but these errors were encountered: