View Single Post
  #9  
Old 09-09-2007, 01:02 PM
jukofyork jukofyork is offline
Senior Member
 
Join Date: Sep 2004
Location: Leeds, UK.
Posts: 2,551
Default Re: Party lock-ups, anybody else?

[ QUOTE ]
[ QUOTE ]
[ QUOTE ]
I had the same problem last night 6 tabling sng's, party just totally froze. No disconnect or crash. Had to restart my computer.

Fortunately i had just started a session and was mostly playing level 2/3 so got back without too much equity loss.

[/ QUOTE ]
Maybe it's SNG-specific?

I've now added a hotkey to the SNGHelper script that will kill and restart party much quicker than trying to do it manually and also something else to automatically click the "I am Back" button whenever it sees it - just played another 3 hour session and not had any probs (yet).

Juk [img]/images/graemlins/smile.gif[/img]

[/ QUOTE ]

Any chance you are sharing the code for the "I am back" button??? [img]/images/graemlins/laugh.gif[/img]

[/ QUOTE ]
Yep, I'm just in the process of adding a few more things to PartySNGHelper and then I'll post the new version. If you know what to do in AHK then you can use this code snippet in a timer:

<font class="small">Code:</font><hr /><pre>; Call this to make sure we never end up sitting out.
AutoSitBackIn:

LobbyWindowTitle = Poker Lobby ; identify poker lobby substring
TableWindowTitle = Buy-in. ; identify pokertable substring

WinGet, lobbyID, ID, %LobbyWindowTitle%

WinGet, pid, PID, ahk_id%lobbyID%
WinGet, rlist, LIST, %TableWindowTitle% ahk_pid%pid%
Loop %rlist%
{
this_id := rlist%a_index%
If this_id != %lobbyID%
{
; Lets see if we can see the check button.
ControlGet, v, Visible, , AfxWnd42u17, ahk_id%this_id%
if (v)
{
ControlGetText, text, AfxWnd42u17, ahk_id%this_id%
IfInString, text, I am Back
{
ControlFocus, AfxWnd42u17, ahk_id%this_id%
Sleep, -1
ControlClick, AfxWnd42u17, ahk_id%this_id%
return
}
}

}
}

return
</pre><hr />

Juk [img]/images/graemlins/smile.gif[/img]
Reply With Quote