What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Manually blacklist a bounty?

Zikke

Active Member
Joined
Sep 14, 2011
Messages
483
Reaction score
35
Please forgive yet another question. Is there a way for me to manually blacklist a bounty? I searched and found an old post for doing it in Adventurer.

My DH for some reason will not attempt to dodge Belial's slams and dies every time, so I need to blacklist that bounty. :(

Edit: I also didn't see an entry for Belial in the Avoidance section.

Thank you!
 
Step1. go to this Demonbuddy\Plugins\Trinity\Components\Adventurer\Game\Quests
Step2. BountyDataFactory.cs open (notepad)
Step3. Ctrl+F use Search Belial(ex)
Step4. Insert comments before each code.
EX)
// A2 - Bounty: Kill Belial (358353)
Bounties.Add(new BountyData
{
QuestId = 358353,
Act = Act.A2,
WorldId = 60756, // Enter the final worldId here
QuestType = BountyQuestType.SpecialEvent,
//WaypointNumber = 20,
Coroutines = new List<ISubroutine>
{
new EnterLevelAreaCoroutine(358353, 109894, 60756, 1074632599, 159574),
new ClearLevelAreaCoroutine(358353),
}
});
↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
// A2 - Bounty: Kill Belial (358353)
// Bounties.Add(new BountyData
// {
// QuestId = 358353,
// Act = Act.A2,
// WorldId = 60756, // Enter the final worldId here
// QuestType = BountyQuestType.SpecialEvent,
//WaypointNumber = 20,
// Coroutines = new List<ISubroutine>
// {
// new EnterLevelAreaCoroutine(358353, 109894, 60756, 1074632599, 159574),
// new ClearLevelAreaCoroutine(358353),
// }
// });
Step5. If you see the annotated bounty, I'll restart the game.
 
Step1. go to this Demonbuddy\Plugins\Trinity\Components\Adventurer\Game\Quests
Step2. BountyDataFactory.cs open (notepad)
Step3. Ctrl+F use Search Belial(ex)
Step4. Insert comments before each code.
EX)
// A2 - Bounty: Kill Belial (358353)
Bounties.Add(new BountyData
{
QuestId = 358353,
Act = Act.A2,
WorldId = 60756, // Enter the final worldId here
QuestType = BountyQuestType.SpecialEvent,
//WaypointNumber = 20,
Coroutines = new List<ISubroutine>
{
new EnterLevelAreaCoroutine(358353, 109894, 60756, 1074632599, 159574),
new ClearLevelAreaCoroutine(358353),
}
});
↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
// A2 - Bounty: Kill Belial (358353)
// Bounties.Add(new BountyData
// {
// QuestId = 358353,
// Act = Act.A2,
// WorldId = 60756, // Enter the final worldId here
// QuestType = BountyQuestType.SpecialEvent,
//WaypointNumber = 20,
// Coroutines = new List<ISubroutine>
// {
// new EnterLevelAreaCoroutine(358353, 109894, 60756, 1074632599, 159574),
// new ClearLevelAreaCoroutine(358353),
// }
// });
Step5. If you see the annotated bounty, I'll restart the game.


Thanks for the code. tested and seems to be working.
 
Back
Top