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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Bot Changes deck from Custom to Basic

q8designer

Member
Joined
Mar 31, 2012
Messages
109
Greetings,

Something weird is happening with my bot, it automatically changes my chosen deck from custom to basic card. I have disabled the questing, still same thing. Any idea? IF log is needed let me know.

Thanks
 
Well, I disabled the quest plugin all together. Now its working. Is there a specific setting to let it go back to my normal bot setting after its done with quests? Playing with custom deck instead of picking Basic decks?

Thanks
 
For some reason, the coder has coded the quest plugin to choose a random custom (if any) or basic deck:

Code:
                    if (MainSettings.Instance.CustomDecks.Any())
                    {
                        // Choose a random deck. We can add more logic for selection later...
                        var rngDeck =
                            MainSettings.Instance.CustomDecks[
                                Client.Random.Next(0, MainSettings.Instance.CustomDecks.Count)];

                        Log.InfoFormat("[Quest] Now choosing a random custom deck to play with since all quests are done.");

                        DefaultBotSettings.Instance.ConstructedDeckType = DeckType.Custom;
                        DefaultBotSettings.Instance.ConstructedCustomDeck = rngDeck.Name;
                    }
                    else
                    {
                        // Choose a random deck. We can add more logic for selection later...
                        var rngDeck = TritonHs.BasicHeroTagClasses[Client.Random.Next(0, TritonHs.BasicHeroTagClasses.Length)];

                        Log.InfoFormat(
                            "[Quest]  Now choosing a random basic deck to play with since all quests are done.");

                        DefaultBotSettings.Instance.ConstructedDeckType = DeckType.Basic;
                        DefaultBotSettings.Instance.ConstructedBasicDeck = rngDeck;
                    }
 
Also, that may not be the problem, but the plugin chooses the required deck for the quest, the quest may require a warlock, if you've no custom decks for that class, it will select the basic one.
 
Also, that may not be the problem, but the plugin chooses the required deck for the quest, the quest may require a warlock, if you've no custom decks for that class, it will select the basic one.

The thing is there are no active quests, so when its done with quests, it just defaults back to basic decks instead of my custom ones.
 
The thing is there are no active quests, so when its done with quests, it just defaults back to basic decks instead of my custom ones.

That's weird, I don't think it's happened to me. Though I don't play Constructed too much.
 
Back
Top