![]() |
|
|
|
#1
|
|||
|
|||
|
[ QUOTE ]
After few sets the newest version works like a charm. Havent tried the 0.5xBB yet though. All I need now is a script that gives a spite call warning. [/ QUOTE ] Just be careful about the table closing - it's messed up on me a few times now and either won't let me sit down or starts trying to close SNGs that haven't finished yet (I've had to disable it on mine). [ QUOTE ] Thanks for the script! Which level you play, Juk? [/ QUOTE ] Only playing Speed 11s atm, and want to build a decent sample of 1.5-2k SNGs before playing 22s. Got through about 600 since last Friday, but now I can 9 table with ease (the Party slider was horrible...) and I've stopped the client crashes I was getting, it won't take too long hopefully. So far my impression of the 11s is VERY juicy: I lost my net connection last week while playing 9 at various stages and was severely upset to say the least (hence got dual connections now), BUT when I woke up in the morning I couldn't work out how come I'd only lost $19. After looking at the Party account page, I saw I'd come 3rd in 4/9 of them!!! Juk [img]/images/graemlins/smile.gif[/img] |
|
#2
|
|||
|
|||
|
Okay I run into really annoying problem.
I use PartyPlanner and I 12-table with slight overlap. Today the tables started popping up like a [censored] pinball table (pinball tables pop up?). They moved on top of each other every time when there was action (any movement) on the table. So I had to shut down the script. What might cause this? Anyway to prevent this? |
|
#3
|
|||
|
|||
|
[ QUOTE ]
Okay I run into really annoying problem. I use PartyPlanner and I 12-table with slight overlap. Today the tables started popping up like a [censored] pinball table (pinball tables pop up?). They moved on top of each other every time when there was action (any movement) on the table. So I had to shut down the script. What might cause this? Anyway to prevent this? [/ QUOTE ] I don't have overlap on my setup, but I did get some weird table flashing yesterday. Since then I've disabled the auto-close tables bit of code because it didn't seem to work properly and it seems to have got rid of the table flashing too. Try just putting a return statement right before this line: "; Now lets try closing the SNGs." and see if that fixes it. I'll have to have another go at writing the table auto-close code to be safer (it didn't even work properly when I checked 10 times in a row if I wasn't at the table). Juk [img]/images/graemlins/smile.gif[/img] |
|
#4
|
|||
|
|||
|
[ QUOTE ]
[ QUOTE ] Okay I run into really annoying problem. I use PartyPlanner and I 12-table with slight overlap. Today the tables started popping up like a [censored] pinball table (pinball tables pop up?). They moved on top of each other every time when there was action (any movement) on the table. So I had to shut down the script. What might cause this? Anyway to prevent this? [/ QUOTE ] I don't have overlap on my setup, but I did get some weird table flashing yesterday. Since then I've disabled the auto-close tables bit of code because it didn't seem to work properly and it seems to have got rid of the table flashing too. Try just putting a return statement right before this line: "; Now lets try closing the SNGs." and see if that fixes it. I'll have to have another go at writing the table auto-close code to be safer (it didn't even work properly when I checked 10 times in a row if I wasn't at the table). [/ QUOTE ] Did that help? It seems that PartyPlanner and my script don't get on well together - I've never had any problems with PartyPlanner before and now it's started lagging the Party tables and crashing itself after an hour or so. [img]/images/graemlins/frown.gif[/img] Juk [img]/images/graemlins/smile.gif[/img] |
|
#5
|
|||
|
|||
|
For some reason it stopped doing the pinball thing. I did nothing different. Then, it started again. Then it stopped. Bleh. I quess I can live with it since my ROI% at the 22s is 137% after I started using this piece of software. Sustainable? [img]/images/graemlins/wink.gif[/img]
|
|
#6
|
|||
|
|||
|
I'm having problemos with the auto-closer. But only when I'm starting my set.
Can I disable the auto-closet from the script and run it as a separate script after after I've gotten all my tables open? |
|
#7
|
|||
|
|||
|
[ QUOTE ]
I'm having problemos with the auto-closer. But only when I'm starting my set. Can I disable the auto-closet from the script and run it as a separate script after after I've gotten all my tables open? [/ QUOTE ] I don't trust t, so have turned it off atm (it tried to close non finished SNGs a few times). To use it alone you just need to make a small script like this: <font class="small">Code:</font><hr /><pre> #Persistent #NoEnv SendMode Input SetTitleMatchMode 2 SetTimer, AutoCloseFinishedSNGs, 1000 return AutoCloseFinishedSNGs: ; Now lets try closing the SNGs. checkfield = Button3 ; Button3 is the "Auto Post Blind" checkbox. 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% { WinGetTitle, name, ahk_id%this_id% ; Make sure we are not seating. ControlGet, result, Visible, , Seat Open, ahk_id%this_id% if (result = 0) { ; Is it not visible? ControlGet, result, Visible, , %checkfield%, ahk_id%this_id% if (result = 0) { ; Lets make 100% sure and try again incase of a graphics delay. Sleep, 150 ControlGet, result, Visible, , %checkfield%, ahk_id%this_id% if (result = 0) { WinClose, ahk_id%this_id% ; Close the table. } } } } } return</pre><hr /> You can also right click on it's taskbar icon and use "Pause Script" to turn it on/off. Juk [img]/images/graemlins/smile.gif[/img] |
|
#8
|
|||
|
|||
|
[ QUOTE ]
For some reason it stopped doing the pinball thing. I did nothing different. Then, it started again. Then it stopped. Bleh. I quess I can live with it since my ROI% at the 22s is 137% after I started using this piece of software. Sustainable? [img]/images/graemlins/wink.gif[/img] [/ QUOTE ] Lol, it seems to have blessed me with unsustainable good luck too. I'm not sure if my fold equity went up bc of the speed of my middle button pushes now though - maybe I imagined it, but I think maybe the fish think fast push = big hand? I've been having problems with Party planner, so the table flashing thing could be something to do with it mixed with PartyPlanner (I've adapted _dave_'s StarsPlanner to work at Party now). |
|
#9
|
|||
|
|||
|
[ QUOTE ]
I quess I can live with it since my ROI% at the 22s is 137% after I started using this piece of software. Sustainable? [img]/images/graemlins/wink.gif[/img] [/ QUOTE ] I can't get this to work. [img]/images/graemlins/confused.gif[/img] Everything else does, incl. the fixes in v1.08, and the tablehighlighter is surprisingly helpful. Thank you! [img]/images/graemlins/smile.gif[/img] |
|
#10
|
|||
|
|||
|
Hi,
i installed the SNG Helper yesterday and i like it a lot but i got some problems. It helps me with right-click mouse weel and so on but it doesn't activate the timebank, no auto buy-in and doesn't find the tables when it looks for them... i didn't change the config and don't know why it happens. I also activated all the buttons that are required in the partysnghelper window. So i hope any1 can help me with it [img]/images/graemlins/smile.gif[/img] Regards |
![]() |
| Thread Tools | |
| Display Modes | |
|
|