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

11-01-2006 , 11:28 PM
I just got a new laptop and could not for the life of me to get the script working, but I just figured out what it was (from reading part of this thread) -- make sure you have the Windows Classic theme selected, this was my problem.

2:00 left TIE BALL GAME GOGOGOGOGO WIZARDSSSS!!!!!
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
11-02-2006 , 03:14 AM
Quote:
Quote:

I am not sure how I would be able to control folding, calling,

I have added hotkey functions to (adv-fold)/fold and check/call to my current test code - they will be in the next update.

I am really enjoying using the mouse to point at a table, and the keyboard to fold-call-bet/raise pot

Only coded it for Stars so far, gonna have to add this for all other sites before release. Won't take long, I shouldn't imagine.

dave.
Hey Dave,

Still like your script a lot (thanx!). But my question still stands: do I HAVE to point the cursor to the table I want to bet on? Can't BetPot just act on the active table? I could change this myself in your code if I knew where to look, but it's quite big

I'd like to play completely without my mouse...

EDIT:
I just did some script-research and found your getid()-function. It uses a global setting called "act_only_on_active_table", which isn't set in the top of your script. If I set this to "1", I think I get the functionality I want, right?

I'll try that tonight, anyway (can't play at work).
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
11-02-2006 , 05:26 PM
Hey man,

I have tried like 20 things but nothing works..

Can I see all the setting i need?

I used hyper simple(do i need certain cards?), windows classic, etc, but am simply having nothing happen..nothing pops up, nothing happens
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
11-02-2006 , 05:37 PM
you did change to 32 bit color right?
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
11-03-2006 , 06:59 PM
heh, I was scared that 32 wasn't the norm for a second..

yea, it's at 32 bit

any other ideas?


thx all!
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
11-04-2006 , 04:28 PM
when I run this script I am able to use the mouse scroll to move bet sizes, but the middle button and right clicks do not register or simply return a zero in the bet box. anyone have a suggestion for me?

thanks.
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
11-04-2006 , 05:29 PM
on stars the roller is working fine for me, but the buttons don't work @ all. I know of at least 1 other person having this same problem. Do we have a solution to this as of yet, are there more people w/ this same problem?
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
11-04-2006 , 06:24 PM
TheProdigy_4,

please PM me a screenshot so I can test the upcoming new release on your tables.

Stoxtrader,
I replied to your PM.

G_Dollaz,
You are certainly not the only one with Stars trouble, although I thinks quite a few have it working by now. As with Prodigy above, please PM me a screenshot so I can test the upcoming new release on your tables.

dave.
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
11-04-2006 , 06:35 PM
Dave:

Sometimes the script works fine and other times it doesn't work at all on Full Tilt. An example: at one table it reads everything perfectly, but at another table the entry field keeps coming at 0. Later in the session, the table that was messing up works fine and then another table doesn't work. Has anyone gotten it to work consistently on Full Tilt?
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
11-04-2006 , 06:44 PM
Hi Steel,

Quote:

Has anyone gotten it to work consistently on Full Tilt?

Well I have (wouldn't have put it out there if it didn't always work for me), but obviously that's not much help now .

I have almost got a completely different method for FT finished, this will be in the next update, and hopefully provide a much more reliably working script for all FT players.

dave.
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
11-05-2006 , 12:07 AM
Hey,

I'm not sure if it will work or not but I changed some settings and redownloaded the pstars client, but..

What are the hotkeys? I have a laptop with no scroll wheel or anything, so how do I change the proggy to fit my needs?

Thanks!
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
11-05-2006 , 12:49 AM
Hi TheProdigy_4,

Quote:

What are the hotkeys? I have a laptop with no scroll wheel or anything, so how do I change the proggy to fit my needs?

Right near the top of the script code, you will see a couple of sections that setup the hotkeys - these are identified by a double-colon (:

Open the script with notepad.

For example, in the default script, there is the section that sets up the middle mouse button:

----------------------------------------------------------------------------
~MButton::
Pot(getid(),"1 1 0.75 0.66", "smallblind", "ssnl", 0)
return
----------------------------------------------------------------------------

If you wanted to change this to use (for example) the "R" key, change it to:

----------------------------------------------------------------------------
~R::
Pot(getid(),"1 1 0.75 0.66", "smallblind", "ssnl", 0)
return
----------------------------------------------------------------------------

Save & reload the script, and the new hotkey will take effect.


I'm sure you get the idea - If not, let me know

dave.
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
11-05-2006 , 01:27 AM
Quote:
this will be in the next update
eta?
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
11-05-2006 , 02:06 AM
Quote:
Quote:
this will be in the next update
eta?
At a safe guess, Monday night.

I wanted to get it done tonight, but I spent all my time figuring out how to make a GUI for StarsPlanner - never done AHK GUI before - was kinda tricky. Took longer than I hoped, and not quite done ywt (but I do know how to make a GUI now )

Will probably be up tomorrow night after some cleaning / tesing, but Monday night is a more safe ETA

dave.
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
11-05-2006 , 02:33 AM
How would i make the up/down buttons control it? Is it just UP ...? heh
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
11-05-2006 , 04:33 AM
Quote:
How would i make the up/down buttons control it? Is it just UP ...? heh
lookie here for the list of all ahk supported keys: http://www.autohotkey.com/docs/KeyList.htm

The up arrow key is indeed "up".
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
11-06-2006 , 08:58 PM
Ok, I got it to actually pick up...

I set the debug up, and it seems to be picking up everything right(the bottom line is what is supposed to be bet, right?)

Unfortunately after it finds all this, it only fills in 0.0000 in the bet amount. So it looks as though it is finding the right numbers, but not filling in the bet amount in the actual field
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
11-08-2006 , 12:21 PM
Posted in the other thread but I'll post here aswell.The script is working on the $-tables on Crypto but not the £-tables, any ideas?
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
11-08-2006 , 03:08 PM
Is the update ready to download? Thanks.
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
11-08-2006 , 09:06 PM
Has anyone gotten this to work?
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
11-08-2006 , 09:20 PM
Quote:

Posted in the other thread but I'll post here aswell.The script is working on the $-tables on Crypto but not the £-tables, any ideas?

Will fix this for the next version.

Quote:

Has anyone gotten this to work?

Some have, some have not. Pls give details (Site / Problem) so I can try and help you solve problems. With any luck, whatever is causing trouble for you will be fixed in the next update, due very soon...

Quote:

Is the update ready to download? Thanks.

Not yet, sorry - Had some tricky bugs to fix in StarsPlanner - I think that is sorted now, will be posting improved code for this (Stars/Crypto/Prima/FullTilt - All need update) tomorrow

dave.
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
11-08-2006 , 10:17 PM
Quote:
Had some tricky bugs to fix in StarsPlanner - I think that is sorted now, will be posting improved code for this (Stars/Crypto/Prima/FullTilt - All need update) tomorrow

dave.
Dave,

starplanner doesnt exist right now, dont even worry about starspanner. there is no starsplanner.

whats starsplanner?.....exactly.
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
11-09-2006 , 11:30 AM
One more thing (hopefully my last) but I was wondering if you're going to get the script to work with ongame/pokerroom?
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
11-09-2006 , 02:12 PM
ty dave I'll donate some $$ (not much, I'm a 25NL player, so don't expect to get rich ) you deserve it.

Best wishes.
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote
11-09-2006 , 06:55 PM
dave... i have been using your betpot script on stars for about a week now with no problems. For some reason when I tried using it on stars just now it will not work. I reloaded it and even installed a new script off overcards and it just will not work. I have double clicked the tray icon and copied the text that comes up if you want to see it for any reason. Has anyone else had a problem like this? Thanks for everything, Dave, donation is on the way.
BetPot AHK (Stars/Party/iPoker/FTP/Crypto/Prima) Quote

      
m