View Single Post
  #316  
Old 11-25-2007, 08:46 PM
diggla diggla is offline
Senior Member
 
Join Date: Mar 2007
Posts: 113
Default Re: PokerPad - AHK hotkey script

Thanks for the update! Ongame_Bet has a small bug because it wants to use the separator instead of the decimal char to input comma values.

<font class="small">Code:</font><hr /><pre>
Ongame_Bet(bet = "") {
global
ControlFocus, %Ongame_BetAmount%
if (Ongame_Separator &amp;&amp; bet)
;StringReplace, bet, bet, ., % Ongame_Separator
StringReplace, bet, bet, ., % Ongame_Decimal
Bet(bet)
}</pre><hr />
Reply With Quote