Ljac;53595 wrote:Alright, I will update the original post to include a small tutorial on how to upload them. Without it there is not much I can do, and if you deleted the Concede.json and the bot is still conceding (it shouldn't concede at all at this point), you need to check the Hearthranger settings (especially the Concede if bot will obviously lose).
Your Auto Concede page should have all options unchecked, kind of like this:
I fixed the concede issue by basically setting the conditions of the extra concedes to something impossible, so they could never trigger.
Heres what my concede.json looks like if anyone is having that issue. I havent seen the bot concede since i changed this;
{
"GameCardId":"Concede",
"ConfigComment":"This is the extra auto concede settings file.",
"ExtraConcdeSettings":
{
"values":
[
{
"comment":"Concede when number of cards in hand is less than 3 and the health difference is 20 or more.",
"condition": "my_hand(count()) < -1 AND (opp_hero(count(), health) + opp_hero(count(), armor) - my_hero(count(), health) - my_hero(count(), armor)) <= 500",
"value":"1",
},
{
"comment":"Concede when deck has less than 2 cards left and you're not winning by at least 10 HP.",
"condition": "my_deck(count()) < 0 AND (my_hero(count(), health) + my_hero(count(), armor) - opp_hero(count(), health) - opp_hero(count(), armor)) < 1",
"value":"1",
},
{
"comment":"Concede when you have 10 mana, your opponent has more than 2 more cards than you and more than 2 more minions than you.",
"condition": "my_hero(count(), max_mana) > 18 AND opp_hand(count()) > (my_hand(count()) + 8) AND my_minions(count()) < (opp_minions(count()) - 9)",
"value":"1",
}
],
},
}