|
 Originally Posted by meeloche
 Originally Posted by bode
 Originally Posted by Lukie
 Originally Posted by meeloche
Ok so I'm still getting an error when i try to open the auto hot key this prompt comes up:
Error: Call to nonexistent function.
Specifically: Pot(getid(),"1 .8 .6666 .6", "smallblind", "ssnl",0)
Am I missing something in this code?
eh, i actually had this problem too when i was setting mine up but i honestly don't remember how i fixed it. I think i had to double click the other one in the folder or something... and obv make sure you have ahk installed.
yeah, thats like the referenced AHK. You need to open up the other one and it uses the one youre getting that error on as a reference file. Consequently, the one your getting that message from is the one you can edit if you want. I edited it so that both clicking the scroll wheel and right clicking preflop raises to pot.
Could you do me a favor and just copy paste the text in the Betpot default hot keys file, so I can match it up?
Thanks.
right click on the AHK file called "betpot_default_hotkeys" and click "edit script". on the fifth paragraph under where it says "~RButton::", it should read:
Code:
~RButton::
Pot(getid(),"0.75 0.75 0.66 0.66", "smallblind", "ssnl", 0)
return
the only thing that changed was after the second line where it says "Pot(getid()," the first number there used to be 0.75 and i changed it to 1. its that simple. so after you change it it should read
Code:
~RButton::
Pot(getid(),"1 0.75 0.66 0.66", "smallblind", "ssnl", 0)
return
|