View Single Post
  #165  
Old 09-07-2007, 02:50 AM
betafemale betafemale is offline
Senior Member
 
Join Date: Jan 2007
Posts: 194
Default Re: AHK Bet Pot Script for iPoker

[ QUOTE ]
[ QUOTE ]
[ QUOTE ]
how do i make it so that it raises 4 bb's preflop instead of 3.5 ?

[/ QUOTE ]

how?

[/ QUOTE ]

Replace these lines

(they are in the FormatBet() function)

OldFormat := A_FormatFloat
SetFormat, Float, 0.2
bet += 0.0
SetFormat, Float, %OldFormat%


with

bet := Round(bet, 0)

[/ QUOTE ]

You copied my answer from another post, but it is not the correct answer. While it sometimes will do what you want, it is not a generic 4 instead of 3.5 bb preflop better.
Reply With Quote