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