I'm losing a lot of coinflips in the final stages of tournaments. The bot keeps calling all-in with AK, AQ, TT, 99, etc. against bigger stacks. It seems that the larger stack usually wins coinflips (ie: AK vs. 10-10). I want to avoid the larger stacks when I go all-in. Is there any way to avoid larger stacks unless I have AA or KK?
Does this look right?
WHEN Opponents = 1 AND OpponentIsAllin AND BetSize <= 150% StackSize AND NOT (hand$AA OR hand$KK) Fold FORCE
And conversely, I want to call against lower stacked opponents: Does the code below look right?
WHEN Opponents = 1 AND OpponentIsAllin AND BetSize <= 40% StackSize AND (hand$22 OR hand$33 OR hand$44 OR hand$55 OR hand$66 OR hand$77 OR hand$88 OR hand$AJ OR hand$AT OR hand$KQ) Call FORCE
All-in codes
Re: All-in codes
looks ok, but i guess BetSize >= 150% StackSize is correct for 1st exampleklee562 wrote: ↑Wed Jul 27, 2022 7:11 am I'm losing a lot of coinflips in the final stages of tournaments. The bot keeps calling all-in with AK, AQ, TT, 99, etc. against bigger stacks. It seems that the larger stack usually wins coinflips (ie: AK vs. 10-10). I want to avoid the larger stacks when I go all-in. Is there any way to avoid larger stacks unless I have AA or KK?
Does this look right?
WHEN Opponents = 1 AND OpponentIsAllin AND BetSize <= 150% StackSize AND NOT (hand$AA OR hand$KK) Fold FORCE
And conversely, I want to call against lower stacked opponents: Does the code below look right?
WHEN Opponents = 1 AND OpponentIsAllin AND BetSize <= 40% StackSize AND (hand$22 OR hand$33 OR hand$44 OR hand$55 OR hand$66 OR hand$77 OR hand$88 OR hand$AJ OR hand$AT OR hand$KQ) Call FORCE
Re: All-in codes
Could you please tell me where i have to put these libes of code? In which part of the profile? ThanksAlex wrote: ↑Wed Jul 27, 2022 8:13 amlooks ok, but i guess BetSize >= 150% StackSize is correct for 1st exampleklee562 wrote: ↑Wed Jul 27, 2022 7:11 am I'm losing a lot of coinflips in the final stages of tournaments. The bot keeps calling all-in with AK, AQ, TT, 99, etc. against bigger stacks. It seems that the larger stack usually wins coinflips (ie: AK vs. 10-10). I want to avoid the larger stacks when I go all-in. Is there any way to avoid larger stacks unless I have AA or KK?
Does this look right?
WHEN Opponents = 1 AND OpponentIsAllin AND BetSize <= 150% StackSize AND NOT (hand$AA OR hand$KK) Fold FORCE
And conversely, I want to call against lower stacked opponents: Does the code below look right?
WHEN Opponents = 1 AND OpponentIsAllin AND BetSize <= 40% StackSize AND (hand$22 OR hand$33 OR hand$44 OR hand$55 OR hand$66 OR hand$77 OR hand$88 OR hand$AJ OR hand$AT OR hand$KQ) Call FORCE
Re: All-in codes
try to put right under the section header. For example under ##f$flop## or ##f$preflop##