View Single Post
  #154  
Old 09-04-2007, 06:27 AM
betafemale betafemale is offline
Senior Member
 
Join Date: Jan 2007
Posts: 194
Default Re: AHK Bet Pot Script for iPoker

Try this (untested)

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