What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
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 !!!
 
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.
 
if you are running 4x accounts in the same game or something along those lines, one bot needs to be set to run the forced bonus act, have this bot use the normal, unmodified profile. Then make a copy of the bounties profile and rename it. Then go into the profile and remove all portions that refer to turning in the finished act quest. So that when it is done, it just moves on to the next act. The three "helpers" run this profile. That way your account set to tackle the bonus act will turn the quests in as they become the bonus act once the previous is turned in.

If you are doing 1 account per game then you need to modify the profile to never turn in bounties and just let it do all acts. If you are monitoring it just join the game when its near completion and reap the rewards. Otherwise you may need to change the profile to not start a new game after all acts are complete but instead loiter/wait until you manually set it loose in a new game.

As far as unmonitored goes, type 1 is better :D.


Edit: just an idea, I have not tried it but it should work in theory. I also am not familiar enough with the majestic voodoo magic that the adventurer profiles/plugin is. I've had no issues with modifying profiles for the other buddy bots and making my own, but demonbuddy is a bit more intense.
 
Last edited:
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.

where do you find them? would be fking awesome to make this !!
 
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.
 
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.

so near impossible or at least a TON of work it seems?
 
where do you find them? would be fking awesome to make this !!

I have tested several times by using Act Selection Mode, it works well.


\Plugins\Adventurer\Coroutines\BountyCoroutines\ActBountiesCoroutine.cs
make this change:
Code:
        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;
        }

\Plugins\Adventurer\Game\Quests\BountyDataFactory.cs
Find these 4 quests, and delete them. So bot will auto skip them.
Code:
            // 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),


                }
            });
Code:
            // 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),


                }
            });
Code:
            // 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),


                }
            });
Code:
            // 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)


                }
            });




But it still have a small problem: bot will not do unsupported quests.
 
Last edited:
Version of DB & Plugins

Hey fellows, what version of db and plugins are you guys running with the setup?
 
@s1r2 fuck man ur the best !! thanks so so so so so so much !!
 
Back
Top