View Single Post
  #588  
Old 12-20-2006, 05:21 PM
PietM PietM is offline
Senior Member
 
Join Date: Aug 2005
Location: All over the (poker)place
Posts: 837
Default Re: Stars Bet Pot AHK ?

[ QUOTE ]
Dave,

Sorry, I'm not too software savy.

Is there a way to set this script so three different hotkeys will be x amount of the pot?

For example, 70%, 80%, 90%, regardless of what street it is, just that amount?

I looked through everything and see where it will bet percentages based on which street, but did not see anything for just a straight bet pot % amount.

Thanks

[/ QUOTE ]

Mind if I reply? [img]/images/graemlins/wink.gif[/img]

What you want is no problem! Just the way I like to play too. Here are my hotkeys (put them in your script and remove the ones that are there).

I've got shift+F8 configured to bet all-in, The 1 key on the keypad to bet pot, the 2 key to bet 3/4ths, the 3 key to bet 2/3rds, and the 5 key to bet half. Got some other keys too, but they're not for betting.

+F8::
Pot(getid(),"999", "smallblind", "ssnl", 0)
return

Numpad1::
Pot(getid(),"1", "smallblind", "ssnl", 0)
return

Numpad2::
Pot(getid(),"0.75", "smallblind", "ssnl", 0)
return

Numpad3::
Pot(getid(),"0.66", "smallblind", "ssnl", 0)
return

Numpad5::
Pot(getid(),"0.5", "smallblind", "ssnl", 0)
return
Reply With Quote