View Single Post
  #1236  
Old 07-24-2007, 09:16 PM
_dave_ _dave_ is offline
Senior Member
 
Join Date: Feb 2005
Location: UK
Posts: 2,628
Default Re: Stars Bet Pot AHK ?

[ QUOTE ]
[ QUOTE ]
how could i change clicking the mouse wheel to bet 99999?

[/ QUOTE ]

[/ QUOTE ]

It is already in the default setup I think... CTRL + ALT + MButton bets all-in whatever the action.

For reference, one could do:

<font class="small">Code:</font><hr /><pre>
SPACE::
Pot(getid(), "9999")
return
</pre><hr />

And with autobet ON:
<font class="small">Code:</font><hr /><pre>
SPACE::
Pot(getid(), "9999", 0, 0, 1)
return
</pre><hr />

Above examples use the spacebar for all-in, obv.

dave.
Reply With Quote