View Single Post
  #148  
Old 09-02-2007, 08:21 AM
dotbum dotbum is offline
Senior Member
 
Join Date: Oct 2006
Location: France
Posts: 311
Default Re: AHK Bet Pot Script for iPoker

[ QUOTE ]
I does not work for me but I'm prolly not using it right. Which parts of the code should I use? Which part of the original code should I replace? What is the original code?

[/ QUOTE ]

Add all of the code I posted to the bottom of butcha's betpot script(whether or not you also add beta's is up to you, as they shouldn't conflict). You then need to find this code at the top of his script:

~RButton::
BetPot()
Return

And either comment it out, like this (will stop the right mouse button from betting pot):

;~RButton::
; BetPot()
;Return

Or change it to another button like this (will make the middle mouse button bet pot instead):

~MButton::
BetPot()
Return

Unfortunately I know so little about ahk at the moment, that I can't get it to work as a stand alone script. I've moved the required functions, so it's probably something that needs initialising, or something done in the wrong order.
Reply With Quote