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

How to manually blacklist a bounty

TarasBulba

Community Developer
Joined
Apr 27, 2015
Messages
794
Reaction score
25
Let's say you want to disable Kill Mathael.

First open DB/Plugins/Adventurer/Game/Quests/BountyDataFactory.cs with notepad++ or similar program.
Remove the following lines.

Code:
            // A5 - Bounty: Kill Malthael (359927)
            Bounties.Add(new BountyData
            {
                QuestId = 359927,
                Act = Act.A5,
                WorldId = 328484, // Enter the final worldId here
                QuestType = BountyQuestType.KillBossBounty,
                WaypointNumber = 57,
                Coroutines = new List<ISubroutine>
                {
                    new EnterLevelAreaCoroutine(359927, 271235, 346410, 1012176886, 176002),
                    new EnterLevelAreaCoroutine(359927, 346410, 328484, -144918420, 374257),
                    new ClearLevelAreaCoroutine(359927)
                }
            });

Restart DB.

Remember that after every Adventurer or DB update, you need to repeat these steps. Do not backup and replace the old file in new versions because that way you might not get the new updates on bounties.
 
N00b question here: By doing this the bot will skip the whole act if the quests are detected?

Thanks for the hard work man, currently enjoying the double cache weekend xD
 
N00b question here: By doing this the bot will skip the whole act if the quests are detected?

Thanks for the hard work man, currently enjoying the double cache weekend xD

Yep, it will.

Thanks, try the beta adventurer if you haven't already :)
 
Back
Top