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.
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.
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.






