Open Side Menu Go to the Top
Register
NEW Free Software: Stars Debustifier v0.1 (close finished tournaments) NEW Free Software: Stars Debustifier v0.1 (close finished tournaments)

12-22-2008 , 02:38 AM
doesnt work.
EDIT: vista, uac off, aero off
NEW Free Software: Stars Debustifier v0.1 (close finished tournaments) Quote
12-22-2008 , 09:25 AM
I'll have a chance to work on it after work today, I couldn't test it on vista because I only have XP, but I'll get it fixed tonight.

Thanks for the feedback.
NEW Free Software: Stars Debustifier v0.1 (close finished tournaments) Quote
12-22-2008 , 01:02 PM
New AHK version seems to work fine on XP, tournaments close almost instantly.

Are there any changes expect making it use AHK and there is no longer an activate button?
NEW Free Software: Stars Debustifier v0.1 (close finished tournaments) Quote
12-22-2008 , 07:35 PM
It uses a different method for finding the tournaments. The .Net version would read through the whole file and find all the lines with a message like
Code:
;MSG_TABLE_SIT_KICK 00010FE0 'You finished the tournament in 7th place,
It would then parse out the handle of that window (00010FE0 here) and check it against the a list of ones that had already been found, if it was in the list it would move on. If it was not in the list it would try and close the window and then add it to the list.

The problem with that is if you play a lot of tournaments one of the later ones might have the same handle as an earlier one, so it wouldn't get closed.

The AHK version takes a different approach that fixes that issue (although I never got any reports of it not closing one, someone probably had it happen).

This one reads only the last 500 lines of the PokerStars.log.0 file each time then it parses those and tries to close the finished tournaments it finds. I was never a really heavy multi-tabler but it should work for 30+ tables at a time. If it misses one then you should be able to fix it by modifying this line in the .ahk file.

Code:
FileContents := Tail(500, LogFilePath)
For the release version I'll make it changeable at the top of the script, but for now just change 500 to 1500 or so, but I doubt it is necessary. That is the line that grabs the last X lines of a file.

Do you prefer the GUI or would you like it as a regular AHK script, or I could make it so that it's just a script with a right-click context menu. Whatever you guys prefer.
NEW Free Software: Stars Debustifier v0.1 (close finished tournaments) Quote
12-22-2008 , 11:19 PM
Does it close them so fast that stars doesnt record your final hand? Or can you add a timer like the other version?
NEW Free Software: Stars Debustifier v0.1 (close finished tournaments) Quote
12-23-2008 , 12:40 AM
I'm going to add a timer and clean it up in a few days, I just put out the ahk version for the people who were having issues with the .net version.
NEW Free Software: Stars Debustifier v0.1 (close finished tournaments) Quote
12-23-2008 , 02:54 AM
Thanks for porting this, as I don't know .net. Should be fun to play with.
NEW Free Software: Stars Debustifier v0.1 (close finished tournaments) Quote
12-23-2008 , 09:22 PM
No problem, I didn't know enough AHK to know it was possible before I started the .NET version but actually ended up using AHK work so I figured I'd translate it into the current standard language for poker scripts.

If you've got any questions about it let me know. I'm going on vacation and I'll be back the 1st of January but I'll probably check the forums a few times up there.
NEW Free Software: Stars Debustifier v0.1 (close finished tournaments) Quote
01-01-2009 , 03:22 PM
I DL'd both versions and neither work. I just get an error sign when I click it. I do have vista so is this the problem?
NEW Free Software: Stars Debustifier v0.1 (close finished tournaments) Quote
01-04-2009 , 04:14 PM
Quote:
Originally Posted by Glitlr
I DL'd both versions and neither work. I just get an error sign when I click it. I do have vista so is this the problem?
Did you change the log directory to:
C:\Users\[insert windows username here minus brackets]\AppData\Local\PokerStars\PokerStars.log.0

?
NEW Free Software: Stars Debustifier v0.1 (close finished tournaments) Quote
01-11-2009 , 02:22 AM
I'm going to test this out tonight. Thanks for being so patient with everyone, OP.

I have Vista SP1 and UAC enabled, so I'll update you if it works or not.
NEW Free Software: Stars Debustifier v0.1 (close finished tournaments) Quote
01-26-2009 , 02:30 PM
doesn't work for me
After opening the script it goes right into the system tray and I don't even get to take a look at a GUI to edit something. I edited the path to the logfile in the editor then but still nothing happens. but anyways... shouldn't the GUI be available somehow? I also don't get an option to sho it if I rightclick the icon in the systemtray.
I use WinXp with SP3... so nothing unusual here. PC has just been set up few days ago and every other ahk script is running fine...
NEW Free Software: Stars Debustifier v0.1 (close finished tournaments) Quote
01-29-2009 , 10:08 PM
i think tableninja can do this as well
NEW Free Software: Stars Debustifier v0.1 (close finished tournaments) Quote
02-04-2009 , 08:07 AM
bump -any chance for an update on this great software?
NEW Free Software: Stars Debustifier v0.1 (close finished tournaments) Quote
02-04-2009 , 08:18 AM
Quote:
Originally Posted by MauMau
bump -any chance for an update on this great software?
Why do you need an update?

It's still working fine for me until yesterday (haven't been playing today, server reset)
NEW Free Software: Stars Debustifier v0.1 (close finished tournaments) Quote
02-04-2009 , 12:25 PM
The program worked fine yesterday etc, but after the reset I can't get it to work for the life of me. Using Vista btw.
NEW Free Software: Stars Debustifier v0.1 (close finished tournaments) Quote
02-04-2009 , 12:55 PM
yea same for me doesn't work today
NEW Free Software: Stars Debustifier v0.1 (close finished tournaments) Quote
02-04-2009 , 01:31 PM
AHHHHHHHH. i feel like a part of my soul is missing now that this doesnt work anymore.
NEW Free Software: Stars Debustifier v0.1 (close finished tournaments) Quote
02-04-2009 , 01:45 PM
yeah i think it semi tilted me having to manually close tables while playin 20ish..
NEW Free Software: Stars Debustifier v0.1 (close finished tournaments) Quote
02-04-2009 , 02:57 PM
I'm going to donate but confirm that the account is still drunkelf3141 on Pokerstars pls, thanks!
NEW Free Software: Stars Debustifier v0.1 (close finished tournaments) Quote
02-04-2009 , 03:03 PM
PokerStars.log.0 no longer says "You finished the tournament" it just says, "MSG_TABLE_SIT_KICK" It it's an easy fix, but it would no longer be able to distinguish between busting in a tourney and getting kicked off of a cash table for sitting out.
NEW Free Software: Stars Debustifier v0.1 (close finished tournaments) Quote
02-04-2009 , 04:33 PM
Quote:
Originally Posted by wickss
PokerStars.log.0 no longer says "You finished the tournament" it just says, "MSG_TABLE_SIT_KICK"
Code:
KickMessage = MSG_TABLE_SIT_KICK		;This is the line we're looking for in the log file
From the first few lines of the Debustifier AHK. Seems like it is looking for the "new" quit message "MSG_TABLE_SIT_KICK".

Quote:
Originally Posted by wickss
It it's an easy fix, but it would no longer be able to distinguish between busting in a tourney and getting kicked off of a cash table for sitting out.
I thought this was only used for tournaments anyways.
NEW Free Software: Stars Debustifier v0.1 (close finished tournaments) Quote
02-04-2009 , 06:56 PM
So how do I fix it I don't play cash.
NEW Free Software: Stars Debustifier v0.1 (close finished tournaments) Quote
02-04-2009 , 07:31 PM
I use the AHK version, and works fine with me (?)

Altho, I don't see any update attempts by the client. I even DL the installer again.
NEW Free Software: Stars Debustifier v0.1 (close finished tournaments) Quote
02-04-2009 , 08:37 PM
please cut/paste the ahk script, maybe that will work for me, thank you.
NEW Free Software: Stars Debustifier v0.1 (close finished tournaments) Quote

      
m