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

[ QUOTE ]
betafemale: yeah i just copied what you wrote because it worked for me [img]/images/graemlins/smile.gif[/img]
but i tried to play on higher stakes and it didn't work as aislephive said.. could you help me out?

[/ QUOTE ]

Yeah it won't always work beacuse it was never made for that. The thing is, you need to add a function to see if you are preflop or not and then compensate your bet. I thought I'd save that for later.

If you want a "dirty" fix do this though: copy the BetPot function and name the copy PreflopRaise or something. Then in that function replace

BetSize := FormatBet(PotSize + 2*CallSize)

with

BetSize := FormatBet(PotSize + 2*CallSize + 123)

where 123 is the size of your sb.

then to raise preflop 4bb call the PreflopRaise function with a hotkey. Like this:

~RButton::
PreflopRaise()
Return

Not the best solution, and you will have to change the 123 number for each level you play, but it is a quick fix which is probably better than nothing.
Reply With Quote