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
  #931  
Old 05-10-2007, 11:31 PM
_dave_ _dave_ is offline
Senior Member
 
Join Date: Feb 2005
Location: UK
Posts: 2,628
Default Re: Stars Bet Pot AHK ?

Hi,

[ QUOTE ]

Kinda same here, im using a gamepad, and the controls just work when my mouse pointer is on that same window that im adjusting my bet, anyone knows how to correct this?


[/ QUOTE ]

Been experimenting (12-tabling [img]/images/graemlins/smile.gif[/img] ) with a PS3 sixaxis for the last few days... you can do any of three things (I do the first, but then I don't have to wait)

A) Wait for the next update to StarsUrgentTable - I added some BetPot integration so if a table is selected -&gt; Send action to that table. New StarsUrgentTabe (also supporting FTP / Party) Wil be online in a day or two after I am satisfied with testing.

B) Use Rolands fine TableNavigator ("AttentionQueue mode" is all I have tested, but all Nav modes should work fine) - BetPot already detects TableNavigator GUI - If a table has the "blue_bar" selecting it - that is the table that will receive the bet command from BetPot.

C) Set the IIRC "act_on_active_table_only := 1" variable in BetPot.AHK - By default it acts on table under mouse - setting this to 1 will make it act on the window that has focus. THIS IS SOMEWHAT DANGEROUS, especially with sites that can steal focus such as PS, UB, probably others - NOT RECOMMENDED.

dave.
Reply With Quote
  #932  
Old 05-10-2007, 11:34 PM
_dave_ _dave_ is offline
Senior Member
 
Join Date: Feb 2005
Location: UK
Posts: 2,628
Default Re: Stars Bet Pot AHK ?

[ QUOTE ]

I guess the problem is not with Visa. I use XP and have the exactly same problem on PP. I guess it's because there's a new "thing" in Party's HH.


[/ QUOTE ]

I will add checks for common problems in to the upcoming BetPot v.3.0...

In the meantime, make sure FPHG is not set to "record observed hands only" or set the "FPHG_uselive := 0" in BetPot.AHK - this makes BetPot use the old style non-live HHF files, maybe will work for you?

care to screenshot the error message / party table to aid my debugging?

dave.
Reply With Quote
  #933  
Old 05-10-2007, 11:35 PM
_dave_ _dave_ is offline
Senior Member
 
Join Date: Feb 2005
Location: UK
Posts: 2,628
Default Re: Stars Bet Pot AHK ?

[ QUOTE ]
Damn I cant figure what's wrong with bet pot on stars. Mouse wheel is working, but middle and right buttons arent. I haven't modified anything in the script. Any ideas anyone?

[/ QUOTE ]

Make sure you have extracted the zip file, and are running the script from the extracted folder (not from a later created shortcut).

Make sure to be using "PokerStars Classic" or "Hyper Simple" theme, in 32-bit colour mode.

Any joy? Vista? XP?
Reply With Quote
  #934  
Old 05-11-2007, 03:32 AM
MyTurn2Raise MyTurn2Raise is offline
Senior Member
 
Join Date: Jun 2005
Location: Evolving Day-By-Day
Posts: 18,508
Default Re: Stars Bet Pot AHK ?

don't suppose we can get the 'leave table' and 'view lobby' buttons hotkeyed for PStars hyper simple?
Reply With Quote
  #935  
Old 05-11-2007, 03:35 AM
_dave_ _dave_ is offline
Senior Member
 
Join Date: Feb 2005
Location: UK
Posts: 2,628
Default Re: Stars Bet Pot AHK ?

[ QUOTE ]
don't suppose we can get the 'leave table' and 'view lobby' buttons hotkeyed for PStars hyper simple?

[/ QUOTE ]

These are pretty much taken care of with StarsPlanner, one of my other Scripts - It can hit "sit out next blind" and has a "Keep Lobby" function. Have you tried that one... not suitable? If not, pls describe what you want, it will be done [img]/images/graemlins/smile.gif[/img]
Reply With Quote
  #936  
Old 05-11-2007, 01:10 PM
LGs0pHT LGs0pHT is offline
Senior Member
 
Join Date: Apr 2007
Posts: 127
Default Re: Stars Bet Pot AHK ?

Had the same problem with party. Since I'm a C++ coder I thought I might give this script a look and it worked out:

The author somehow missed the following:

if not ErrorLevel
{
ControlGetText, currenthand, Static11, ahk_id%id%
StringReplace, currenthand, currenthand, `,,, All
StringTrimLeft, currenthand, currenthand, InStr(currenthand, "#")
StringReplace, currenthand, currenthand, %A_SPACE%,, All
currenthand := "Hand History for Game " . currenthand

StringTrimLeft, hh, hh, InStr(hh, currenthand, true, 0)-1

IfNotInString, hh, %currenthand% &lt;------ currenthand still has the decimal points in it, thus the hand can't be found.
{
TrayTip, BetPot,`nParty HHF reader`n`n%currenthand% not found in file %hhf%,10,17
Exit
}
}


i elected to outcomment the whole bracket. works now.
Reply With Quote
  #937  
Old 05-11-2007, 10:24 PM
_dave_ _dave_ is offline
Senior Member
 
Join Date: Feb 2005
Location: UK
Posts: 2,628
Default Re: Stars Bet Pot AHK ?

LGs0pHT,

thanks for sharing [img]/images/graemlins/smile.gif[/img] And also thanks for the explanation.

To confirm, you just commented these two lines?

<font class="small">Code:</font><hr /><pre>
TrayTip, BetPot,`nParty HHF reader`n`n%currenthand% not found in file %hhf%,10,17
Exit
</pre><hr />
This is a little but dangerous, but not very - you will just get min-raises when HHF files not present, i.e first hand at table, or FPHG not running.


[ QUOTE ]

The author somehow missed the following:


[/ QUOTE ]

Indeed I did, top code section should read:

<font class="small">Code:</font><hr /><pre>
ControlGetText, currenthand, Static11, ahk_id%id%
StringReplace, currenthand, currenthand, `,,, All
<font color="blue">StringReplace, currenthand, currenthand, .,, All</font>
StringTrimLeft, currenthand, currenthand, InStr(currenthand, "#")
StringReplace, currenthand, currenthand, %A_SPACE%,, All
currenthand := "Hand History for Game " . currenthand
</pre><hr />

I think.

Party people, please test this edit &amp; give success report if you can.

I would like to confirm with someone who actually uses these locales that this fix is correct before posting updated version.

Many thanks,

dave.
Reply With Quote
  #938  
Old 05-12-2007, 01:13 AM
HalvSame HalvSame is offline
Senior Member
 
Join Date: May 2006
Posts: 391
Default Re: Stars Bet Pot AHK ?

Dave, you might want to replace the party GroupAdd criteria from
<font class="small">Code:</font><hr /><pre>GroupAdd, PartyTables, ahk_class #32770,,, : Poker Lobby</pre><hr />

<font class="small">Code:</font><hr /><pre>GroupAdd, PartyTables, Good Luck ahk_class #32770,,, : Poker Lobby</pre><hr />
to stop it from trying to get the pot size from the Notes window, buddy search etc, which of course leads to the annoying balloon popping up.
Reply With Quote
  #939  
Old 05-12-2007, 01:18 AM
_dave_ _dave_ is offline
Senior Member
 
Join Date: Feb 2005
Location: UK
Posts: 2,628
Default Re: Stars Bet Pot AHK ?

[ QUOTE ]
Dave, you might want to replace the party GroupAdd criteria from
<font class="small">Code:</font><hr /><pre>GroupAdd, PartyTables, ahk_class #32770,,, : Poker Lobby</pre><hr />

<font class="small">Code:</font><hr /><pre>GroupAdd, PartyTables, Good Luck ahk_class #32770,,, : Poker Lobby</pre><hr />
to stop it from trying to get the pot size from the Notes window, buddy search etc, which of course leads to the annoying balloon popping up.

[/ QUOTE ]

Will do, thanks [img]/images/graemlins/smile.gif[/img]

BigPotGrabber very nice, BTW.

EDIT: haven't I done that already?

dave.
Reply With Quote
  #940  
Old 05-12-2007, 01:25 AM
HalvSame HalvSame is offline
Senior Member
 
Join Date: May 2006
Posts: 391
Default Re: Stars Bet Pot AHK ?

lol, sounds like you might have. I guess I'm using an older version.

Edit: nope, not there in 0.2m
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:16 AM.


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