For me when it gets bounty in stinging winds it goes back to that same wp always, but when i move it to new bounty it continues normaly
DUDE UR THE BEST !!!!! I spend 100+ hours trying fix this .... AND NOW IT'S FINALLY NOT LEAVING !!!
For me when it gets bounty in stinging winds it goes back to that same wp always, but when i move it to new bounty it continues normaly
1) I was under the impression I had fixed this, are you confirming it is still quitting? I would try a fresh install, as I have not had this problem as of yet.
2) I don't see any way to solve this. Both quests are stored on Tyreal, and I am not aware of an interface to select a specific quest. It MIGHT be possible to not complete 1 quest in both act 3 and 4. By doing this, you could complete whichever act has the bonus, turn it in, then complete the other, but it would cost a few minutes.
J
To solve this problem you can just left one quest in A3.
There must be a quest to kill the boss in A3, so find all these quests then let bot skip them.
Just peeked around a bit, all of the bounty/quest definitions are in the plugin, not the profile. You would have to directly edit the plugins functionality.
where do you find them? would be fking awesome to make this !!
public virtual async Task<bool> GetCoroutine()
{
switch (State)
{
case States.NotStarted:
return await NotStarted();
case States.RunningBounties:
return await RunningBounties();
case States.TurningInTheActQuest:
return await TurningInTheActQuest();
case States.Completed:
return await Completed();
case States.UnsupportedBountyFound:
[B] return await RunningBounties();[/B]
case States.ActIsDisabled:
return await ActIsDisabled();
case States.Failed:
return await Failed();
}
return false;
}
// A3 - Bounty: Kill Azmodan (349244)
Bounties.Add(new BountyData
{
QuestId = 349244,
Act = Act.A3,
WorldId = 121214, // Enter the final worldId here
QuestType = BountyQuestType.SpecialEvent,
//WaypointNumber = 39,
Coroutines = new List<ISubroutine>
{
new EnterLevelAreaCoroutine(349244, 119290, 0, 1743679055, 159575),
new MoveToPositionCoroutine(121214, new Vector3(602, 608, 37)),
new MoveToPositionCoroutine(121214, new Vector3(553, 556, 4)),
new MoveToPositionCoroutine(121214, new Vector3(512, 562, 0)),
new MoveToPositionCoroutine(121214, new Vector3(492, 573, 0)),
new MoveToPositionCoroutine(121214, new Vector3(479, 524, 0)),
new MoveToPositionCoroutine(121214, new Vector3(419, 403, 0)),
new ClearLevelAreaCoroutine(349244),
}
});
// A3 - Bounty: Kill Cydaea (349224)
Bounties.Add(new BountyData
{
QuestId = 349224,
Act = Act.A3,
WorldId = 119650, // Enter the final worldId here
QuestType = BountyQuestType.KillBossBounty,
//WaypointNumber = 38,
Coroutines = new List<ISubroutine>
{
new EnterLevelAreaCoroutine(349224, 119641, 139272, 43541819, 176001),
new EnterLevelAreaCoroutine(349224, 139272, 119650, 43541885, 161278),
new ClearLevelAreaCoroutine(349224),
}
});
// A3 - Bounty: Kill Ghom (346166)
Bounties.Add(new BountyData
{
QuestId = 346166,
Act = Act.A3,
WorldId = 103209, // Enter the final worldId here
QuestType = BountyQuestType.KillBossBounty,
//WaypointNumber = 31,
Coroutines = new List<ISubroutine>
{
new EnterLevelAreaCoroutine(346166, 136415, 103209, 2102427919, 161277),
new ClearLevelAreaCoroutine(346166),
}
});
// A3 - Bounty: Kill the Siegebreaker Assault Beast (349242)
Bounties.Add(new BountyData
{
QuestId = 349242,
Act = Act.A3,
WorldId = 0, // Enter the final worldId here
QuestType = BountyQuestType.KillBossBounty,
WaypointLevelAreaId = 112565,
//WaypointNumber = 34,
Coroutines = new List<ISubroutine>
{
new EnterLevelAreaCoroutine(349242, 95804, 226713, -443762283, 226784),
new ClearLevelAreaCoroutine(349242)
}
});