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
  #1461  
Old 09-13-2007, 09:05 PM
TheProdigy TheProdigy is offline
Senior Member
 
Join Date: Jun 2005
Location: BLOG INSIDE
Posts: 3,254
Default Re: Stars Bet Pot AHK ?

I just downloaded an update today when it came up..

The stars autoreloader is causing stars to go nuts and when I turn it off, everything is fine.
Reply With Quote
  #1462  
Old 09-13-2007, 09:07 PM
_dave_ _dave_ is offline
Senior Member
 
Join Date: Feb 2005
Location: UK
Posts: 2,628
Default Re: Stars Bet Pot AHK ?

[ QUOTE ]
I just downloaded an update today when it came up..

The stars autoreloader is causing stars to go nuts and when I turn it off, everything is fine.

[/ QUOTE ]

Indeed - StarsPlanner was doing the same, I just uploaded a fix (the lobby now matches criteria for identifying a popup [img]/images/graemlins/frown.gif[/img] ).

AutoReloader will get a fix uploaded in the next 15 minutes [img]/images/graemlins/smile.gif[/img]

dave.
Reply With Quote
  #1463  
Old 09-14-2007, 12:02 AM
TheProdigy TheProdigy is offline
Senior Member
 
Join Date: Jun 2005
Location: BLOG INSIDE
Posts: 3,254
Default Re: Stars Bet Pot AHK ?

Thank you [img]/images/graemlins/smile.gif[/img]

I was waiting to play my sesh as well [img]/images/graemlins/smile.gif[/img]
Reply With Quote
  #1464  
Old 09-14-2007, 12:09 AM
demon102 demon102 is offline
Senior Member
 
Join Date: Sep 2006
Location: magically delicious
Posts: 3,275
Default Re: Stars Bet Pot AHK ?

deleted
Reply With Quote
  #1465  
Old 09-14-2007, 01:40 AM
TheProdigy TheProdigy is offline
Senior Member
 
Join Date: Jun 2005
Location: BLOG INSIDE
Posts: 3,254
Default Re: Stars Bet Pot AHK ?

Hey,

uhmm..Is there anything new here?
Reply With Quote
  #1466  
Old 09-14-2007, 11:54 AM
Vandalar Vandalar is offline
Junior Member
 
Join Date: Jun 2007
Location: Estonia
Posts: 16
Default Re: Stars Bet Pot AHK ?

Hi.
1.What line of code should i add to the betpot_default_hotkeys.ahk so that my gamepad (PS2)analogstick would operate like a mousewheel (to increase-decrease the bet amount) ?
2. How can i make the d-pad work like a mouse to move between 12 tables or less ? Can i make Xpadder and betpot work together ?
Reply With Quote
  #1467  
Old 09-14-2007, 05:36 PM
Kairos Kairos is offline
Member
 
Join Date: May 2007
Posts: 96
Default Re: Stars Bet Pot AHK ?

[ QUOTE ]
Hey dave, I'm using your script for a long time but today it stopped working on party [img]/images/graemlins/frown.gif[/img]. It says it doesn't find the hand historyfiles anymore but freephg is running and working, i tried switching the live feature off but the same problem occurs. I didn't change anything, yesterday it still worked like a charm [img]/images/graemlins/frown.gif[/img].
I attach a screenshot with all related stuff.
http://img513.imageshack.us/img513/4439/dunnond6.jpg
Hope you can help me with this [img]/images/graemlins/smile.gif[/img].

[/ QUOTE ]

I had the same problem. Party now uses points to separate its hand number, which the script didn't remove properly

Just go to line 1720 which should read:
<font class="small">Code:</font><hr /><pre> StringReplace, currenthand, currenthand, `,,, All </pre><hr />

and add this line:
<font class="small">Code:</font><hr /><pre> StringReplace, currenthand, currenthand, .,, All </pre><hr />
and it should work again.

Here is a diff in reference to version 0.2s:

<font class="small">Code:</font><hr /><pre> --- BetPot-v0.2s.ahk Wed Aug 15 11:17:34 2007
+++ BetPot-v0.2s_changed.ahk Fri Sep 14 21:39:18 2007
@@ -1718,6 +1718,7 @@
{
ControlGetText, currenthand, Static11, ahk_id%id%
StringReplace, currenthand, currenthand, `,,, All
+ StringReplace, currenthand, currenthand, .,, All
StringTrimLeft, currenthand, currenthand, InStr(currenthand, "#")
StringReplace, currenthand, currenthand, %A_SPACE%,, All
currenthand := "Hand History for Game " . currenthand
</pre><hr />
Reply With Quote
  #1468  
Old 09-16-2007, 01:01 PM
Chip65 Chip65 is offline
Junior Member
 
Join Date: Dec 2004
Location: Home
Posts: 14
Default Re: Stars Bet Pot AHK ?

[ QUOTE ]
[ QUOTE ]
Hey dave, I'm using your script for a long time but today it stopped working on party [img]/images/graemlins/frown.gif[/img]. It says it doesn't find the hand historyfiles anymore but freephg is running and working, i tried switching the live feature off but the same problem occurs. I didn't change anything, yesterday it still worked like a charm [img]/images/graemlins/frown.gif[/img].
I attach a screenshot with all related stuff.
http://img513.imageshack.us/img513/4439/dunnond6.jpg
Hope you can help me with this [img]/images/graemlins/smile.gif[/img].

[/ QUOTE ]

I had the same problem. Party now uses points to separate its hand number, which the script didn't remove properly

Just go to line 1720 which should read:
<font class="small">Code:</font><hr /><pre> StringReplace, currenthand, currenthand, `,,, All </pre><hr />

and add this line:
<font class="small">Code:</font><hr /><pre> StringReplace, currenthand, currenthand, .,, All </pre><hr />
and it should work again.

Here is a diff in reference to version 0.2s:

<font class="small">Code:</font><hr /><pre> --- BetPot-v0.2s.ahk Wed Aug 15 11:17:34 2007
+++ BetPot-v0.2s_changed.ahk Fri Sep 14 21:39:18 2007
@@ -1718,6 +1718,7 @@
{
ControlGetText, currenthand, Static11, ahk_id%id%
StringReplace, currenthand, currenthand, `,,, All
+ StringReplace, currenthand, currenthand, .,, All
StringTrimLeft, currenthand, currenthand, InStr(currenthand, "#")
StringReplace, currenthand, currenthand, %A_SPACE%,, All
currenthand := "Hand History for Game " . currenthand
</pre><hr />

[/ QUOTE ]

Not working for me! [img]/images/graemlins/frown.gif[/img]
Reply With Quote
  #1469  
Old 09-16-2007, 01:42 PM
Kairos Kairos is offline
Member
 
Join Date: May 2007
Posts: 96
Default Re: Stars Bet Pot AHK ?

What error message do you get?
Reply With Quote
  #1470  
Old 09-16-2007, 02:37 PM
Chip65 Chip65 is offline
Junior Member
 
Join Date: Dec 2004
Location: Home
Posts: 14
Default Re: Stars Bet Pot AHK ?

[ QUOTE ]
What error message do you get?

[/ QUOTE ]
When i bet pot the value is right in the window but
the ammount is all in,
Maybe because I use a Swedish Windows XP ?
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:00 PM.


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