View Single Post
  #162  
Old 09-06-2007, 06:49 PM
robster robster is offline
Member
 
Join Date: May 2006
Posts: 30
Default Re: AHK Bet Pot Script for iPoker

[ 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)
Reply With Quote