Two Plus Two Newer Archives  

Go Back   Two Plus Two Newer Archives > Tournament Poker > STT Strategy
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #51  
Old 02-22-2007, 11:53 PM
Quetzo Quetzo is offline
Senior Member
 
Join Date: Jan 2006
Location: Sweden
Posts: 262
Default Re: AHK Script for Full Tilt SnG\'s

[ QUOTE ]
once again great script. I thought of another feature request (I previously suggested the option to datamine). You have the option to limit the # of SNGs played. So I can 4 table and when I have played 24 stop. But I am often playing to a specific time, or rather stop opening tables at a certain time. So, how about a time at which no more tournaments will be opened. Or if its easier, just a timer program so I can say stop opening SNGs in 3 hours.

[/ QUOTE ]
Shouldn't be any problems, will test the script in a couple of hours and then release an update. Easiest will be that you set a number of minutes you want the script to open tables and after that stop.
Reply With Quote
  #52  
Old 02-23-2007, 12:34 AM
TheNoodleMan TheNoodleMan is offline
Senior Member
 
Join Date: Jan 2005
Location: Not using the back button
Posts: 6,873
Default Re: AHK Script for Full Tilt SnG\'s

Can you make it automatically berate people that slowroll me?
Reply With Quote
  #53  
Old 02-23-2007, 02:09 AM
Quetzo Quetzo is offline
Senior Member
 
Join Date: Jan 2006
Location: Sweden
Posts: 262
Default Re: AHK Script for Full Tilt SnG\'s

[ QUOTE ]
Can you make it automatically berate people that slowroll me?

[/ QUOTE ]
Yes, but poker should be a fun and friendly game! Even though it's possible in theory, I don't think it would work well though.
Reply With Quote
  #54  
Old 02-23-2007, 02:18 AM
Powers_That_Be Powers_That_Be is offline
Senior Member
 
Join Date: Feb 2007
Posts: 135
Default Re: AHK Script for Full Tilt SnG\'s

yeah, a number of minutes until stopping would be great. thanks.
Reply With Quote
  #55  
Old 02-23-2007, 02:30 AM
Quetzo Quetzo is offline
Senior Member
 
Join Date: Jan 2006
Location: Sweden
Posts: 262
Default Re: AHK Script for Full Tilt SnG\'s

Updated version where you can choose after how many minutes the script should stop registering. Download FTPSnGMTH
Reply With Quote
  #56  
Old 02-23-2007, 06:07 AM
braminc braminc is offline
Senior Member
 
Join Date: Oct 2006
Location: Portland
Posts: 448
Default Re: AHK Script for Full Tilt SnG\'s

i love this script quetzo, and if i wasnt running so bad lately, id be donating more!!! lol

one more minor issue. i put in several names of regulars and i turned on the feature of if 3 of these people are registered then DONT register for this tourney. and the script does this correctly.

HOWEVER, when that game becomes full and theres a new lobby to register, the script doesnt automaticaly restart registration...??? and the logbox thing keeps saying that those players are registered for all the future SNGs so it keeps refusing to register. i have to close and reopen the script to get it to start registering again. am i doing something wrong?

in the meantime im just turning that feature off and everything seems fine. [censored], but also, the same problem as above occured when i manually unregistered for one SNG while the script was running.

k, sory for all the complaints. but theyre not really complaints, just observations and things [img]/images/graemlins/smile.gif[/img]
Reply With Quote
  #57  
Old 02-23-2007, 06:51 AM
Shaver67 Shaver67 is offline
Senior Member
 
Join Date: Jun 2004
Location: On the 40 side of 60/40
Posts: 273
Default Re: AHK Script for Full Tilt SnG\'s

Thanks for the delayed registration setting, move up 1 and the script in general I [censored] love it.

I'm shipping $ on FT, the SN is different but related and you can't be getting that many transfers at 6am est [img]/images/graemlins/smile.gif[/img]

thanks again
Matt
Reply With Quote
  #58  
Old 02-23-2007, 01:47 PM
nighty_boy nighty_boy is offline
Member
 
Join Date: Sep 2006
Posts: 45
Default Re: AHK Script for Full Tilt SnG\'s

d-j gets all the cred...but i was the one doing the manual video and what do i get..nothing.. [img]/images/graemlins/mad.gif[/img]
Reply With Quote
  #59  
Old 02-23-2007, 03:39 PM
Quetzo Quetzo is offline
Senior Member
 
Join Date: Jan 2006
Location: Sweden
Posts: 262
Default Re: AHK Script for Full Tilt SnG\'s

[ QUOTE ]
Thanks for the delayed registration setting, move up 1 and the script in general I [censored] love it.

I'm shipping $ on FT, the SN is different but related and you can't be getting that many transfers at 6am est [img]/images/graemlins/smile.gif[/img]

thanks again
Matt

[/ QUOTE ]
Thanks
Reply With Quote
  #60  
Old 02-23-2007, 03:42 PM
Quetzo Quetzo is offline
Senior Member
 
Join Date: Jan 2006
Location: Sweden
Posts: 262
Default Re: AHK Script for Full Tilt SnG\'s

[ QUOTE ]
one more minor issue. i put in several names of regulars and i turned on the feature of if 3 of these people are registered then DONT register for this tourney. and the script does this correctly.

HOWEVER, when that game becomes full and theres a new lobby to register, the script doesnt automaticaly restart registration...??? and the logbox thing keeps saying that those players are registered for all the future SNGs so it keeps refusing to register. i have to close and reopen the script to get it to start registering again. am i doing something wrong?

[/ QUOTE ]
It's a bug, script just overwrite players from last SnG, but if there's nothing to overwrite with the old players remained. So in Functions.ahk, change the function CheckPlayers(CheckPlayersTourneyID) to the code below and the script reset all players before checking the new SnG.
<font class="small">Code:</font><hr /><pre>CheckPlayers(CheckPlayersTourneyID)
{
global

Sleep, 500

Loop, 36
{
reggedArray%A_Index% := 0
}

noFromPlayerList := 0
ControlFocus, SysListView321, Full Tilt Poker - Tournament %CheckPlayersTourneyID%
ControlGet, regged, List,, SysListView321, Full Tilt Poker - Tournament %CheckPlayersTourneyID%
StringSplit, reggedArray, regged, %A_Tab%
StringSplit, playerListArray, playerList, `,,%A_Space%

Loop
{
if playerListArray%A_Index%
{
player := playerListArray%A_Index%

Loop, 36
{
if reggedArray%A_Index% = %player%
{
GuiControl,, info, %player% is already regged for tourney %CheckPlayersTourneyID%||
noFromPlayerList++
break
}
}
}
else
{
break
}
}

return noFromPlayerList
} </pre><hr />
[ QUOTE ]
in the meantime im just turning that feature off and everything seems fine. [censored], but also, the same problem as above occured when i manually unregistered for one SNG while the script was running.

[/ QUOTE ]
The script doesn't like when you unregister manually and the button Unreg doesn't work that well either. I have to fix this, but not sure how to do it.
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 09:48 AM.


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