Open Side Menu Go to the Top
Register
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima)

07-22-2007 , 10:07 PM
Quote:
FFS why do my raise amounts keep setting it to zero? I had it working fine before but I deleted and redownloaded it and i cant get it working.
Enable the debug mode and see what info BetPot is missing / finding... this should give you some idea what is going wrong.

Must be missing something... u had it working previously.... why would you delete / reinstall if it was working OK? formatted computer?

dave.
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
07-22-2007 , 10:11 PM
Quote:
Dave,

Vista is still giving me problems. I have been trying to get the script to work for 3 days and still can't. No button works when the script is running (on pokerstars, 1-2 nl cash) and when I hit the wheel, it turns into a double sided arrow which normally allows you to drag yourself around the page (which is clearly not what I want to do). And what exactly is and how might I disable the UAC? Can someone please give me a step by step instruction to make this thing work it is killing me.
Sounds like you have some "helper" application intercepting the mouse clicks - you should never get a double-sided arrow middle clicking on PokerStars windows

Can you tell me what mouse you are using?

Does the wheel up/down work for you?

As to the UAC... vista users will have to chime in - I expect it is in the "Control Panel" somewhere, but not being a Vista user yet, I really have no idea where to find this toggle.

dave.
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
07-23-2007 , 12:19 AM
only the mouse scroll is working for me. when i right click or when i click the scroll, bet amount becomes 0. i also copied and pasted a code from here so i can make "z x c v b" different bet amounts in relation to the pot, but does not work. what should i do?
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
07-23-2007 , 02:26 PM
_dave_,

Thank you so much.
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
07-23-2007 , 05:28 PM
Quote:
I'm in the same situation at ViZioN - although I haven't needed to disable UAC (that said, it is annoying me, so reckon I will soon)

Also, it works fine with pokerstars on the same pc.
It's Stars I'm having the problems with. I'll go test on Party in a mo, see if it works on there.

edit: just tested on party, and it's not working on there either. I got the following message:

"Party HHF Reader
FPHG live file not found for game #......"

Any idea what's wrong?

ViZioN
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
07-23-2007 , 06:00 PM
I tried looking through this thread, but I couldnt find anything.

How do I get this working with UB? It worked fine without any modifications at stars, but doesnt do anything at all at UltimateBet.
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
07-23-2007 , 06:04 PM
hijack...

is the link here http://www.overcards.com/wiki/moin.cgi/BetPot
the most recent?

also the documentation seems to say that clicking the mouse wheel is the same as right clicking. is that the case?

also, how could i change clicking the mouse wheel to bet 99999?
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
07-23-2007 , 06:50 PM
Is there any way to get this script to work with tableresizer.com?
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
07-24-2007 , 01:36 PM
Quote:
how could i change clicking the mouse wheel to bet 99999?
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
07-24-2007 , 09:12 PM
Quote:
Is there any way to get this script to work with tableresizer.com?
I think not.

if there is any demand I will update my old FT resizer script to support other sites, BetPot is of course compatible with that

dave.
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
07-24-2007 , 09:16 PM
Quote:
Quote:
how could i change clicking the mouse wheel to bet 99999?
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.
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
07-24-2007 , 09:22 PM
Quote:

is the link here http://www.overcards.com/wiki/moin.cgi/BetPot
the most recent?

ALWAYS

Quote:

also the documentation seems to say that clicking the mouse wheel is the same as right clicking. is that the case?

Sort of, by default middle (wheel) click bets full pot, right click bets 3/4 pot pre-flop/flop, and 2/3 pot on the turn/river.

dave.
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
07-26-2007 , 12:10 AM
i got it working. this is awesome. thank you dave.
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
07-26-2007 , 05:38 AM
Quote:
Quote:
I'm in the same situation at ViZioN - although I haven't needed to disable UAC (that said, it is annoying me, so reckon I will soon)

Also, it works fine with pokerstars on the same pc.
It's Stars I'm having the problems with. I'll go test on Party in a mo, see if it works on there.

edit: just tested on party, and it's not working on there either. I got the following message:

"Party HHF Reader
FPHG live file not found for game #......"

Any idea what's wrong?

ViZioN

i have the same prob on party. may be because im from germany and party uses commas for numbers but "party_uses_commas_for_decimals := 1" is set.

im using fphg 2.09, the folder is correct and the file the box mentions is there.
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
07-26-2007 , 07:55 PM
Dave, this is the most awesome piece of freeware I have ever seen.

I made a few changes to suit myself (fantastic how you made it easy to use modify)
One change I made that completes the automation is to use the extra buttons on a 5 button mouse for check and fold.

~XButton2::
Fold(getid())
return

~XButton1::
Call(getid())
return

Very simple but effective - works fine for me on stars anyhow.

BTW - Everyone who uses this should be sending Dave at least the price of a beer, preferably a buyin.
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
07-27-2007 , 12:32 PM
I'm going to get crazy. I read this thread completely. I use the newest version of autohotkey, betpot (0.2p) and FreePHG. But it won't work on partypoker!!! The mwheel works fine, but the (for me) most important thing, the betpot function on mouse2 and/or mouse3 DOESN'T work! I tried party_uses_commas_for_decimals := 1 and 0, fphg_uselive = 1
and 0. It doesnt work. I'm going to smash my computer soon.
Using WinXP with SP2
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
07-27-2007 , 04:44 PM
I tested it on PokerStars, mwheel works, but nothing else.
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
07-27-2007 , 08:37 PM
Have you unzipped the script and put it in its own folder?
This happened me.
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
07-28-2007 , 03:42 AM
yes, i did
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
07-28-2007 , 06:59 AM
Try running windows classic theme, 32 bit colour &amp; 1024 x 768 pixels.
Then uninstall and reininstall incase you accidently changed something.
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
07-28-2007 , 07:57 AM
i tried, didn't help
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
07-28-2007 , 11:35 AM
dave, pls help
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
07-28-2007 , 12:46 PM
[quote]
Hi Melchiades,

if you eun with debug=1, does it pick up the numbers from the call / raise buttons?


Try this - I think this solved that problem for me.

The slider is the correct colour to be recognised as "normal" theme, it only seems to me a slight difference in the background of the pot area.

Try changing this setting, and see if there is any effect:

Line# 1083
--------------------------------------------------------------------------------------------------------------------
pot := DigitSearch(relXStars(380, w), relYStars(35, h), relXStars(496, w), relYStars(60, h), id, potPicDir)
--------------------------------------------------------------------------------------------------------------------

change to:
--------------------------------------------------------------------------------------------------------------------
pot := DigitSearch(relXStars(380, w), relYStars(35, h), relXStars(496, w), relYStars(60, h), id, potPicDir, 30%
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
07-28-2007 , 01:59 PM
this is for pokerstars, isnt it?
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
07-28-2007 , 02:38 PM
yep
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote

      
m