All-in codes

Report suspected software bugs here, or post your problems
Post Reply
ken911
Fish
Fish
Posts: 8
Joined: Wed Jul 27, 2022 7:01 am

All-in codes

Post by ken911 »

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
Alex
Site Admin
Site Admin
Posts: 3106
Joined: Sun Mar 26, 2017 5:58 pm

Re: All-in codes

Post by Alex »

klee562 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
looks ok, but i guess BetSize >= 150% StackSize is correct for 1st example
Francis83
Fish
Fish
Posts: 8
Joined: Wed Nov 16, 2022 9:59 am

Re: All-in codes

Post by Francis83 »

Alex wrote: Wed Jul 27, 2022 8:13 am
klee562 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
looks ok, but i guess BetSize >= 150% StackSize is correct for 1st example
Could you please tell me where i have to put these libes of code? In which part of the profile? Thanks
Alex
Site Admin
Site Admin
Posts: 3106
Joined: Sun Mar 26, 2017 5:58 pm

Re: All-in codes

Post by Alex »

try to put right under the section header. For example under ##f$flop## or ##f$preflop##
Post Reply