Two Plus Two Newer Archives  

Go Back   Two Plus Two Newer Archives > Internet Gambling > Software
FAQ Community Calendar Today's Posts Search

View Poll Results: poll
< 1K 24 28.57%
1-10K 18 21.43%
10-100K 11 13.10%
100-500K 6 7.14%
500-1000K 3 3.57%
> 1000K 22 26.19%
Voters: 84. You may not vote on this poll

Reply
 
Thread Tools Display Modes
  #581  
Old 12-16-2006, 04:39 PM
sputnik365 sputnik365 is offline
Senior Member
 
Join Date: May 2005
Posts: 162
Default Re: Stars Bet Pot AHK ?

Hi, Dave,
v0.2d
Small problem with Ladbrokes.
It works ok, then after a while it tries to bet 0.
Closing and reopening the table temporarily fixes it.
All the best and thank you for this
Reply With Quote
  #582  
Old 12-17-2006, 10:01 AM
Eyeback Eyeback is offline
Senior Member
 
Join Date: Mar 2005
Posts: 103
Default Re: Stars Bet Pot AHK ?

[ QUOTE ]
Hi Dave,

I'm playing Interpoker and absolutely nothing when I start the script, am I missing something here since no one else seems to have any problem with the script on crypto.

Btw, I also use the script on Prima and it works perfectly.

[/ QUOTE ]

I have the same problem but on sunpoker...
Reply With Quote
  #583  
Old 12-17-2006, 02:04 PM
corsakh corsakh is offline
Senior Member
 
Join Date: Aug 2006
Location: Kitty said what?
Posts: 3,991
Default Re: Stars Bet Pot AHK ?

Hello Dave, Your doing a great job. Thanks.

For some reason the "AlterAmount" function does not work on Party Poker. I tryed altering the code a little bit, but no success. I also tryed changing the hotkeys from mouse wheels to up and down arrows, nothing. Then I changed them to F1 and F2 respectevly, still nothing. BUT!! Strangely, now the keypad arrows started working as if they were bound to the AlterAmount function. Im lost and cinfused... considering it works fine on stars [img]/images/graemlins/wink.gif[/img]

Using the latest FPHG and winXP [img]/images/graemlins/wink.gif[/img]
Reply With Quote
  #584  
Old 12-17-2006, 08:53 PM
_dave_ _dave_ is offline
Senior Member
 
Join Date: Feb 2005
Location: UK
Posts: 2,628
Default Re: Stars Bet Pot AHK ?

[ QUOTE ]
[ QUOTE ]
Hi Dave,

I'm playing Interpoker and absolutely nothing when I start the script, am I missing something here since no one else seems to have any problem with the script on crypto.

Btw, I also use the script on Prima and it works perfectly.

[/ QUOTE ]

I have the same problem but on sunpoker...

[/ QUOTE ]

Crypto: Lobby must be open when the script loads (so we can grab it's process ID, therefore find the tables it spawns - since the tables no longer contain identifying information themselves).

So make sure you start InterPoker, SunPoker, whatever before loading BetPot - if not, right click the tay icon for BetPot and Reload the script.

Does this help?

dave.
Reply With Quote
  #585  
Old 12-17-2006, 08:56 PM
_dave_ _dave_ is offline
Senior Member
 
Join Date: Feb 2005
Location: UK
Posts: 2,628
Default Re: Stars Bet Pot AHK ?

[ QUOTE ]
Hi Dave,

set up fold and call for prima and notice that nothing happens. In the code I see that there is not a route for it; crypto was recently added; has prima not been done yet?

t

[/ QUOTE ]

Fold / Call not yet implemented for Prima - I can't figure a way of accurately determining where to click - Prima does not use AHK identifiable controls, and the full size / miniview different layouts make using fixed co-ordinates tricky. Added to that I only have one Prima site installed, so I can't be sure the buttons always appear in the same place across skins...

dave.
Reply With Quote
  #586  
Old 12-19-2006, 08:48 PM
The_Elegance The_Elegance is offline
Junior Member
 
Join Date: Apr 2006
Posts: 9
Default Re: Stars Bet Pot AHK ?

[ QUOTE ]
Crypto: Lobby must be open when the script loads (so we can grab it's process ID, therefore find the tables it spawns - since the tables no longer contain identifying information themselves).

So make sure you start InterPoker, SunPoker, whatever before loading BetPot - if not, right click the tay icon for BetPot and Reload the script.

Does this help?

dave.

[/ QUOTE ]

Nope, still nothing ... [img]/images/graemlins/frown.gif[/img]
Reply With Quote
  #587  
Old 12-20-2006, 04:33 PM
Gregg777 Gregg777 is offline
Senior Member
 
Join Date: Aug 2004
Location: FTP Mods In Profile
Posts: 2,399
Default Re: Stars Bet Pot AHK ?

Dave,

Sorry, I'm not too software savy.

Is there a way to set this script so three different hotkeys will be x amount of the pot?

For example, 70%, 80%, 90%, regardless of what street it is, just that amount?

I looked through everything and see where it will bet percentages based on which street, but did not see anything for just a straight bet pot % amount.

Thanks
Reply With Quote
  #588  
Old 12-20-2006, 05:21 PM
PietM PietM is offline
Senior Member
 
Join Date: Aug 2005
Location: All over the (poker)place
Posts: 837
Default Re: Stars Bet Pot AHK ?

[ QUOTE ]
Dave,

Sorry, I'm not too software savy.

Is there a way to set this script so three different hotkeys will be x amount of the pot?

For example, 70%, 80%, 90%, regardless of what street it is, just that amount?

I looked through everything and see where it will bet percentages based on which street, but did not see anything for just a straight bet pot % amount.

Thanks

[/ QUOTE ]

Mind if I reply? [img]/images/graemlins/wink.gif[/img]

What you want is no problem! Just the way I like to play too. Here are my hotkeys (put them in your script and remove the ones that are there).

I've got shift+F8 configured to bet all-in, The 1 key on the keypad to bet pot, the 2 key to bet 3/4ths, the 3 key to bet 2/3rds, and the 5 key to bet half. Got some other keys too, but they're not for betting.

+F8::
Pot(getid(),"999", "smallblind", "ssnl", 0)
return

Numpad1::
Pot(getid(),"1", "smallblind", "ssnl", 0)
return

Numpad2::
Pot(getid(),"0.75", "smallblind", "ssnl", 0)
return

Numpad3::
Pot(getid(),"0.66", "smallblind", "ssnl", 0)
return

Numpad5::
Pot(getid(),"0.5", "smallblind", "ssnl", 0)
return
Reply With Quote
  #589  
Old 12-20-2006, 06:07 PM
Gregg777 Gregg777 is offline
Senior Member
 
Join Date: Aug 2004
Location: FTP Mods In Profile
Posts: 2,399
Default Re: Stars Bet Pot AHK ?

Thanks for the reply.
Reply With Quote
  #590  
Old 12-20-2006, 06:42 PM
Gregg777 Gregg777 is offline
Senior Member
 
Join Date: Aug 2004
Location: FTP Mods In Profile
Posts: 2,399
Default Re: Stars Bet Pot AHK ?

I can't get that to work for Full Tilt.

edit:

Got it working, found a note somewhere you needed the player chat off.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 06:19 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.