If HR doesn't count cards lost as cards played then a custom
Concede.json config like this might work:
Code:
{
"GameCardId":"Concede",
"ConfigComment":"This is the extra auto concede settings file.",
"ExtraConcdeSettings":
{
"values":
[
{
"comment":"concede when more than 5 cards are milled",
"condition":"my_played(count()) + my_hand(count()) + my_deck(count()) < 25",
"value":"1",
}
],
},
}
You can change the amount of cards lost before conceding by changing the "
25" to "
30 - cards lost before conceding").
So say I want to concede after losing more than 2 cards, I change it to 28.