| Message |
RobinP's Full Tilt Tools (not just urgent table) |
Sun Mar 22, 2009 1:55 pm |
|
| Not sure if it's identical (probably) but here is the AHK script code I used for the upcoming featured article for "RobinP's Full Tilt Tools" . It includes Urgent Table, Table Highlight, Mouse Move, Enable Time Bank.
Once you run the script you can right click it in the system tray to turn any of the features on/off.
COPY & PASTE AND NAME THE FILE : RobinPFullTiltTools.ahk ::>>
;
; AutoHotkey Version: 1.x
; Language: English
; Platform: Win9x/NT
; Author: RobinP
;
; Script Function:
; Jumps to the most urgent FT table
;
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
#SingleInstance Force
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
SendMode InputThenPlay
SetTitleMatchMode, 2
SysGet, border, 32
SysGet, caption, 4
border_colour := "ff0000"
border_size := 5
trans := 255
last_table_id := ""
menu, tray, DeleteAll
menu, tray, NoStandard
menu, tray, add, EnableHighlight
menu, tray, add, EnableActivateUnderMouse
menu, tray, add, EnableMouseMove
menu, tray, add, EnableTimeBank
menu, tray, add, DisableAll
menu, tray, add
menu, tray, add, Exit
menu, tray, Check, EnableHighlight
menu, tray, Check, EnableActivateUndermouse
menu, tray, Check, EnableMouseMove
menu, tray, Check, EnableTimeBank
highlightenabled := true
activateundermousenabled := true
mousemoveenabled := true
timebankenabled := true
Loop
{
Sleep,200
if (highlightenabled)
Urgenttable()
if (activateundermousenabled)
activatetableundermouse()
if (timebankenabled)
timebanktables()
}
return
timebanktables()
{
WinGet, id, list, Limit Hold'em, , Full Tilt Poker
Loop, %id%
{
this_id := id%A_Index%
WinGetClass, this_class, ahk_id %this_id%
WinGetTitle, this_title, ahk_id %this_id%
ControlGet, v, Visible, , FTCSkinButton19, ahk_id%this_id%
if (v)
{
ControlClick,FTCSkinButton19, ahk_id%this_id%
}
}
}
Urgenttable()
{
global last_table_id
WinGet, id, list, Limit Hold'em, , Full Tilt Poker
ControlGet, v, Visible, , FTCSkinButton13, ahk_id%last_table_id%
if (!v)
{
makegui()
Loop, %id%
{
this_id := id%A_Index%
WinGetClass, this_class, ahk_id %this_id%
WinGetTitle, this_title, ahk_id %this_id%
ControlGet, v, Visible, , FTCSkinButton13, ahk_id%this_id%
if (v)
{
makegui(this_id)
break
}
}
}
}
activatetableundermouse()
{
MousegetPos,,,WinID
WinGetClass, class, ahk_id %WinID%
;WinGetTitle, title, ahk_id %WinID%
;MsgBox, %title%
if (class="FTC_TableViewFull")
winactivate, ahk_id %WinID%
}
makegui(id="")
{
global last_table_id
global border_colour
global border_size
global trans
global mousemoveenabled
if (id != last_table_id)
{
last_table_id := id
if(!id)
{
Gui, 1: Cancel
Gui, 2: Cancel
Gui, 3: Cancel
Gui, 4: Cancel
return
}
WinGetPos, x, y, w, h, ahk_id%id%
global border
global caption
x := x + border
y := y + border + caption
w := w - (2*border)
h := h - (2*border) - caption
;top
guinum := 1
Gui, %guinum%: +Alwaysontop +Lastfound +Owner
Gui, %guinum%: Color, %border_colour%
WinSet, Transparent, %trans%
Gui, %guinum%: -Caption
Gui, %guinum%: Show, w%w% h%border_size% x%x% y%y% NoActivate
;left
guinum++
Gui, %guinum%: +Alwaysontop +Lastfound +Owner
Gui, %guinum%: Color, %border_colour%
WinSet, Transparent, %trans%
Gui, %guinum%: -Caption
Gui, %guinum%: Show, w%border_size% h%h% x%x% y%y% NoActivate
;bottom
guinum++
Gui, %guinum%: +Alwaysontop +Lastfound +Owner
Gui, %guinum%: Color, %border_colour%
WinSet, Transparent, %trans%
Gui, %guinum%: -Caption
y2 := y + h - border_size
Gui, %guinum%: Show, w%w% h%border_size% x%x% y%y2% NoActivate
;right
guinum++
Gui, %guinum%: +Alwaysontop +Lastfound +Owner
Gui, %guinum%: Color, %border_colour%
WinSet, Transparent, %trans%
Gui, %guinum%: -Caption
x2 := x + w - border_size
Gui, %guinum%: Show, w%border_size% h%h% x%x2% y%y% NoActivate
if (mousemoveenabled)
{
x3 := x + ((w/4)*3)
y3 := y + ((h/4)*3)
;SoundBeep, 750, 100
Coordmode, Mouse, Screen
MouseMove, x3, y3, 0
}
}
}
EnableHighlight:
menu, tray, toggleCheck, EnableHighlight
highlightenabled := !highlightenabled
return
EnableActivateUnderMouse:
menu, tray, toggleCheck, EnableActivateUndermouse
activateundermousenabled := !activateundermousenabled
return
EnableMouseMove:
menu, tray, toggleCheck, EnableMouseMove
mousemoveenabled := !mousemoveenabled
return
EnableTimeBank:
menu, tray, toggleCheck, EnableTimeBank
timebankenabled := !timebankenabled
return
DisableAll:
menu, tray, unCheck, EnableActivateUndermouse
activateundermousenabled := false
menu, tray, unCheck, EnableHighlight
highlightenabled := false
menu, tray, unCheck, EnableTimeBank
timebankenabled := false
menu, tray, unCheck, EnableMouseMove
mousemoveenabled := false
return
Exit:
ExitApp
return |
|
Re: Hello Sean! |
Fri Apr 10, 2009 11:34 am |
|
| I appreciate the welcome, I definitely need to start visiting these forums more often. Yeah I can put together a video about pokerazor and actually might do so and post a link here in the forums for everyone to watch. |
|
Re: HEM v PT3 Imprt Speed Test |
Fri Apr 10, 2009 11:35 am |
|
| That's really crazy because HEM always imported much quicker .... however the last version of PT3 that I used was I think the first release of the commercial edition.
One thing you HAVE to do with HEM once a month (or every 50k hands or so) is run a manual vacuum, it does wonders. |
|
Re: software on mac |
Fri Apr 10, 2009 11:38 am |
|
| There should be a write up on Poker Co-Pilot around here I think! I've used the program a lot, it works great for what you are looking for it to do. On-table HUD, keeps results, works quick, no hassle. |
|
Re: HUD STATS >>>>> which stats u use |
Fri Apr 10, 2009 11:41 am |
|
| I would recommend that your HUD be something that evolves as you do as a player. A HUD for a 6max cash game player at 200nl would be vastly different than one for a player playing $5 Sit and Gos.
I play 100nl on Stars (enjoying the worst downswing of my life I might preface) and use:
VPIP/PFR/AF/LC/Hands
3B / Fold to 3Bet / Cbet / Fold to Cbet
Steal / Fold BB to Steal / Squeeze / Fold to turn cbet |
|
Re: software on mac |
Tue Apr 14, 2009 3:17 pm |
|
| Actually funny you should mention it I'm writing up a full review of Poker Co-Pilot with a little video this week, so stayed tuned. |
|
First Impressions on PlayerGPS.com |
Tue Apr 14, 2009 3:21 pm |
|
| Hey guys my article about my first impressions on a hot new poker program (online based) called PlayerGPS.com was published and is featured on the homepage.
http://www.pokersoftware.com/articles/2 ... sions.html
Anyone else using this? I immediately put some friends I have that play 50nl+ off the top of my head and then looked up a couple of big fish I know (you can tell by the screenshots). I think a couple of other guys have the official review in the works but for now the beta is actually free until June 1st (personally confirmed with their site staff) so check it out.
Cool? I think so. Worth the future cost per month? That's definitely debatable. |
|
Re: HUD STATS >>>>> which stats u use |
Tue Apr 14, 2009 3:24 pm |
|
lol ... I play 100nl full ring for now and mix in some 6max when I feel saucy. I do multi-table (usually 9 at a time) but definitely not in the massively-multi-table category. Supernova is an outside shot for 2009, I'm hoping to make it. Obviously I want to live a life so SNE is not under consideration.
My stats actually seem pretty standard amongst the 100nl and 200nl regs that I know, and I know some that have even more.
I have been told the games at FTP are a little softer but I do not have rakeback. I just might have to ask my wife to open an account there  |
|
Re: Max number of tables increased on Absolute Poker and Ultimat |
Tue Apr 14, 2009 3:26 pm |
|
| I guess that's good but is Cereus getting enough traffic to warrant people getting on 14 tables? Are they just grinding out rakeback because from what I understand the VIP program kinda blows there.
What's funny is that on bodog it's only 4 tables max but it really helps make the games looser because you don't have any massive multi-tabling nits. |
|
Re: Four color decks? |
Tue Apr 14, 2009 3:28 pm |
|
| I always use 4 colored decks and even bought a special deck I really liked from some theme site because it made recognizing the cards so much easier.
Live decks, I have never played with 4 colored decks, but it's probably my next purchase. I saw a deck of copags that had it, looked gorgeous. |
|
Re: First Impressions on PlayerGPS.com |
Tue Apr 14, 2009 6:15 pm |
|
| It should be noted that I was contacted by the PlayerGPS people and they have since retracted the pricing structure and it is official "TBD" so who knows. The good news is that it is free through June 1. |
|
Re: Holdem Manager Omaha |
Wed Apr 29, 2009 6:03 pm |
|
| Ya, I have it, and its tremendous in terms of tracking. Unfortunately, the HUD doesn't really help since nobody has gone to the trouble of long term research for HUD stats for Omaha games. As it stands it works great though. |
|
Re: Mac Compatibility |
Wed Apr 29, 2009 6:11 pm |
|
| [quote="bantig":50sroln8]Im looking to either purchase a macbook 13 inch or a std pc. Will these windows integrating programs like VMware fusion let you run Holdem mangager on the mac.[/quote:50sroln8]
Yes, be keep in mind that your database should probably be kept small. I use parallels and it works fine, if you get one with a big hard drive I suggest getting the free Boot Camp option installed.
[quote="bantig":50sroln8]If I choose a std pc what requirements should i need? I plan on runing HM, a few tournament programs, use hmk scrips, sharkscope HUD possibly, a good ICM calculater, and a few extra stuff I guess. [/quote:50sroln8]
2GB with Windows XP is a must, and if you have Vista, at least 3GB and probably 4GB. Ideally you can get a 100GB hard drive. Make sure you can get a Core-Duo in the 2.16GHz neighborhood as a minimum. |
|
Re: First Impressions on PlayerGPS.com |
Wed May 06, 2009 11:15 pm |
|
| Fox that's brilliant, you're absolutely right that you can use this as a layer of security. |
|
Re: Have you used PokerTableRatings.com? |
Wed May 06, 2009 11:18 pm |
|
| I am using the software but now I am VERY careful not to be using it while PokerStars is on, since the poker room now lists it as being a prohibited software (so long as PokerStars is running!).
That aside, I find their databases to be largely consistent with mine for 100nl+ and use it for doing some research on people that look like they've put a ton of hands in but that I don't have any on in my HEM DB.
I don't particularly find their buddy feature all that compelling after having used the one at Player GPS. |
|
Re: Holdem Manager Omaha |
Wed May 06, 2009 11:19 pm |
|
| Yeah VPIP and FPR are good stats for Omaha, as well as calling Cbet on every street and WTSD%. Basically you want to know how often an villain is in a hand, and then how likely they are to showdown. |
|
Re: FTOPS XII/MiniFTOPS |
Wed May 06, 2009 11:21 pm |
|
| I thought you were a shoe-in for the high roller event lol!
Ya I don't have much of a roll at FTP but getting in on some of these events are just too lucrative to pass up. I gotta admit that Full Tilt has some great weekly and now that $10k Daily for a $1 entry is kinda fun, especially for people with micro-rolls.
As it is I plan to play a couple of these tournaments, probably a couple of NLHE ones and a PLO one. |
|
Re: Super Turbo KO tournaments on Full Tilt |
Wed May 06, 2009 11:22 pm |
|
| Good grief this is a push-n-pray! I hope you don't play these for any sort of large buy-in. $5 i can understand "for fun" but please don't tell me these are like $100 tournaments. |
|
Re: Most used AHK script? |
Thu May 07, 2009 11:30 am |
|
| Actually I use something called "The Opener" that allows a user to put in different programs and have them all load up at once. This way you are able to open up your Stars, HEM, Table Ninja, etc all at once with a simple double-click rather than constantly double-clicking all the programs. |
|
Data Mining |
Mon May 18, 2009 7:19 pm |
|
| I can't remember but I could swear it was here on Pokersoftware.com that there was an article about various data mining websites.
Anyone have a clue what that article was? |
|
Absolute Poker scripts? |
Mon May 18, 2009 7:22 pm |
|
| Does anyone know if the BetPot script is compatible with AbsolutePoker? In addition I use Table Ninja for Stars which is awesome, but I imagine there is nothing like it for Absolute? |
|
Re: Absolute Poker scripts? |
Tue May 19, 2009 5:06 pm |
|
| Ya I've trolled around various other forums and sites. There's frickin' nothing out there.
So - how do we find someone to make one lol! |
|
Re: Data Mining |
Tue May 19, 2009 5:08 pm |
|
| I noticed prodatamine.com wasn't listed, apparently they do pokerstars. |
|
Re: Absolute Poker scripts? |
Thu May 21, 2009 2:22 am |
|
| Ya lets bribe him, who wants to chip in? |
|
Re: Omaha Manager Review |
Sun May 31, 2009 8:14 pm |
|
| It a load of fun and I was happy to write about it. Seriously, I think there's so much more of an edge for Omaha specialists in their game than there is for NLHE players in their game if you compare the two.
We're at a real interesting point where Omaha players can break down stats, but nobody knows "what good stats are" which makes life rather interesting. |
|
Re: PlayerGPS Question |
Sun May 31, 2009 8:11 pm |
|
| I play $100nl and there are player I have identified in HEM that I put on my buddy list. We're talking dead money with money to burn types with -10BB/100 over 10k hands. I'd be stupid not to troll for em. |
|
Re: Absolute Poker scripts? |
Sun May 31, 2009 8:13 pm |
|
| Here's a question ... for those of you that play on Absolute Poker, would you be willing to pay a programmer to build an AHK script for things like:
- Auto Reload
- Table Highlighting
- BetPot
If so how much? How would you find such a programmer?
BTW a friend nabbed the table mod from a popular modding site, it makes AP look a bazillion times better. |
|
Re: New Table Selection Software: TableScan Turbo (Free Beta!) |
Thu Jun 04, 2009 3:19 pm |
|
A first impressions article is coming *very* soon Thanks to Zandry who found a bug in his v0.34 edition of TST and the next day released a new version that proved to fix the issue for me. |
|
Re: PokerStars auto addon feature |
Wed Jun 17, 2009 4:23 pm |
|
| What about an auto-rebuy for RB events? |
|
Re: Omaha Manager Review |
Wed Jun 17, 2009 4:26 pm |
|
| Slowly but surely people are checking out Omaha Manager ... been chatting with some PLO friends who were slow to adopt but finally bought the program and love it. Ha ha told ya so. |
|
Re: Taking a break from poker |
Wed Jun 17, 2009 4:27 pm |
|
| Agreed that the best thing to do is play the usual game you play but at -1 stake level so you can just have some fun and get back into the swing of things. GL man! |
|
Re: problem with full tilt poker |
Wed Aug 26, 2009 6:03 am |
|
| Have you had the issues recently? I have several friends reporting that all the issues are gone and everything is stable, and one friend who continues to report bugs every session. |
|
Re: Alternative for postgreSQL? |
Wed Sep 23, 2009 2:38 pm |
|
| +1 to the FreePokerDB and yes it uses MySQL and runs great. |
|
Re: Mac Compatibility |
Wed Sep 23, 2009 2:40 pm |
|
| Right ... for us Mac people you basically should be looking at
1. Poker CoPilot 2
2. PokerTracker 3 for Mac (whenever it comes out??)
3. BlazingStars for PokerStars on a Mac (shortcuts)
4. PokerStars / Full Tilt Poker / UltimateBet / AbsolutePoker for sites that have a native mac software program |
|
Re: New site for finding a coach |
Wed Sep 23, 2009 2:43 pm |
|
| Hey Fox how about some cash game coaches listed on that site? |
|
Re: PlayerGPS Freeroll at PokerStars - Everybody Wins! |
Thu Oct 08, 2009 4:49 pm |
|
| Pretty sick freeroll with a huge +EV when you consider using PlayerGPS to your advantage to sit at fishy tables. |
|
Upcoming PokerSoftware.com freeroll for PlayerGPS |
Thu Oct 08, 2009 4:51 pm |
|
| Hey everybody, I got to say I love this freeroll promotion. For those of you that haven't tried out PlayerGPS yet, it's pretty slick. Given the pricing structure of the service and what's being given away it seems hugely +EV to participate.
Here's what I use PlayerGPS for ... maybe others can chime in too ...
1. Tracking friends to rail and watch them play.
2. Tracking my favorite pros
3. Finding uber-fish at various sites and levels to sit at their tables
4. Security as I've put myself in my list to get a text message every time I log in. If i get such a message and I am not playing I know my account got accessed.
Anyways to have access to this for free is pretty sick. |
|
Thoughts on Full Tilt Poker potentially killing shortstacker |
Thu Oct 08, 2009 4:55 pm |
|
| If you've followed the debate on the other forums out there, it's becoming rather vocal that players want the shortstacker problems at FTP to be resolved. The rumor is that FTP is going to change the buy-in structure of their standard full ring games to:
Standard table: 50bb min buyin, 100 max
Deep table: 100bb min buyin, 200bb max, with antes
Cap tables: 20bb min
So it wouldn't destroy shortstackers but would open the standard tables back up to everyone.
I've been doing shortstacker counts at non-deep tables at 100nl, 200nl and 400nl for an upcoming article and so far it's in the neighborhood of:
100nl: 38% of players are shortstackers
200nl: 32%
400nl: 41%
Personally I hate shortstackers, since most of the ones I play against at these levels are actually good and use their edge wisely. Anyone else want to chime in on this debate here? |
|
Re: Online poker luck analyzer |
Mon Oct 12, 2009 9:54 am |
|
| Is this basically a Above or Below EV calculator? Does it work for tournaments and ring games? Curious! |
|
Re: needed poker program |
Mon Oct 12, 2009 9:55 am |
|
| You might want to check out PokerRazor as well, it's a little bit deeper than PokerStove. |
|
Re: Thoughts on Full Tilt Poker potentially killing shortstacker |
Mon Oct 12, 2009 9:57 am |
|
| Fox you play limit poker as well as tournaments if I am not mistaken. If you do some research you'll find that a lot of the shortstackers at 100nl-400nl games are highly skilled and use the mathematical edge to their advantage very well. If you start to have 3-4 at *every* single table, it becomes a major problem for those people that want to play deep stacked games. It goes well beyond simply plugging hand ranges into pokerstove at that point ... part of my data shows that at 400nl non-deep tables, a whopping 41% of players are shortstackers. |
|
Re: Thoughts on Full Tilt Poker potentially killing shortstacker |
Fri Oct 16, 2009 12:50 am |
|
| My friend BelgoSuisse on the TwoPlusTwo forums explained how changing the buy-in structure and making the shortstackers play at Cap tables actually doesn't change the rake structure intake for Full Tilt at all using tons of hands he has on SSers and mathematical fact. The argument is so compelling that FTPDoug has said there are changes coming. |
|
Re: Full Tilt's new Cash Out tournaments |
Fri Oct 16, 2009 12:51 am |
|
| yeah I saw these run this morning and some Full Tilt Pros were actually participating to help drum up interest (I assume) or just try them out for novelty sake. |
|
Re: COMPATIBILITY ISSUES ANYONE? |
Fri Oct 16, 2009 12:52 am |
|
| There is no point to using PokerTracker 3 with the PokerAce HUD, it's already built in.
So what you should try at first:
1. PokerTracker 3 (hand history, reports, HUD, Table Scanning)
2. TableNinja (or TableNinjaFT depending on where you play)
That's it! |
|
Re: PlayerGPS Freeroll at PokerStars - Everybody Wins! |
Fri Oct 16, 2009 12:54 am |
|
| Just make sure your SN is posted here and you'll be signed up ... once the signups are closed on our forums, we'll post the tournament information including the number so you can find it easily. |
|
PokerSoftware.com Podcast - Episode 2 |
Tue Feb 02, 2010 3:55 pm |
|
| Check out the latest edition of the PokerSoftware.com Podcast!
Download it here: http://www.pokersoftware.com/videos/pod ... cast_2.m4a
Be sure to look at the artwork as it is synced up with links throughout the podcast.
Topics in this podcast:
- Interview with the developer of Poker Push Bot
- Latest Headlines and News
- What's New in Poker Software with Jayme Lyttle segment |
|
Re: StarCash: New Cash Game Script Available |
Tue Jan 26, 2010 6:21 pm |
|
| Jayme, to get this to work, you save it in a text file and then save it as "StarCash.AHK" correct? |
|
Re: Hey I'm new |
Fri Nov 20, 2009 1:47 am |
|
| Welcome to the forums here, if you have any questions, please ask away! |
|
Re: StarCash: New Cash Game Script Available |
Thu Jan 28, 2010 11:56 am |
|
| Thanks will do, I pointed a friend out to this post and he'll be posting his thoughts on the AHK script soon. Free scripts are great when then work!! |
|
Re: Cake Network HUD usage |
Fri Nov 20, 2009 1:45 am |
|
| Right, Cake won't allow you to use a HUD but you can totally import in your own hand histories and keep track of yourself.
Anyone play on Cake these days? I had a few friends that were mid-stakes regs that moved to FTP. |
|
Re: Track your Home Cash Poker Results www.CashPokerStats.com |
Mon Feb 08, 2010 9:16 pm |
|
| Sounds like a neat little program, I assume this is for Windows 7, Vista and XP? |
|
Security Software |
Mon Feb 08, 2010 9:18 pm |
|
| I highly suggest people check out Chris Wallace's tips for internet security. This is one part of the poker life that so many people don't pay attention to but literally put their entire bankroll in jeopardy because of it.
In supplement to his review I would highly suggest people check out a neat program called Roboform (at www.roboform.com) which is a fantastic password encryption and storage utility. Highly recommended. |
|
Re: Poker tracker update question |
Mon Dec 07, 2009 4:07 pm |
|
| Yes, the reason that both PT3 and HEM only allow hero stats for a HUD on Cake is that it's against the terms of service at that particular site. So, the tracking programs are staying in compliance with the poker site to keep everything peachy. This compromise allowed both programs to import Cake hands which wasn't the case before. |
|
Re: Online poker luck analyzer |
Mon Dec 07, 2009 4:08 pm |
|
Does it take into consideration things like KK running into AA or other factors that aren't -EV but seem incredibly crappy and unlucky? Pretty sure my chart would win if that was the case  |
|
MiniFTOPS |
Mon Dec 07, 2009 4:10 pm |
|
| Anyone else getting in on the action on Wednesday? I'll be hanging with a few friends. One of my friends, Brian, is a good friend of Chicago Joey who apparently will be hanging out with us when I am there (look for an upcoming feature on him here at PSW by the way!!!).
We might be prop betting a lot more action than the buy-in to event 1 lol, how about any of you? |
|
Re: New Poker Calculator |
Fri Apr 02, 2010 11:36 am |
|
|
Re: Poker Tracker 3 Table Tracker |
Mon Apr 05, 2010 10:51 pm |
|
| It's just fine and works marvelously with Full Tilt. The reason it's in compliance is that it reference against your personal database and not a centralized one. |
|
Re: Table Ninja question |
Mon Mar 01, 2010 2:08 pm |
|
| Sorry about that. There used to be a 1-year license that I think was $35. Still at $60, TN is a must if you want to multitable. I use the current version for Stars and it works great, plus the FTP version is really solid now too. FYI the "tableninja compliant" mods at tiltBuster are awesome working with TN. |
|
Re: Why are the reviews false for buddy lists? |
Mon Mar 01, 2010 2:09 pm |
|
| Obviously, I disagree with the OP. I use quite a few buddy list programs, including PlayerGPS. I get a text message as soon as a player logs in, which is darn near instant notification. Their IMs come in super quick as well.
For other buddy list programs, use them to find the fish. They are updated regularly and if you take too long, sure the fish probably moved to another table. But just refresh the buddy list and you'll find them. |
|
Re: First Impressions on PlayerGPS.com |
Mon Mar 01, 2010 2:10 pm |
|
| Totally disagree. I use this all the time to bumhunt some fish and also track myself. The SMS text messages are darn near instant. |
|
PokerSoftware.com Podcast #3 for March 1, 2010 |
Mon Mar 01, 2010 2:12 pm |
|
| We've very excited to announce the newest podcast!
Download it here: http://www.pokersoftware.com/videos/pod ... cast_3.m4a
Be sure to watch it in iTunes or on your iPod or iPhone. We integrate screenshots with the podcast so make sure your album art is turned on if you watch in iTunes.
In this podcast we have some great features:
- Interview and overview with PlayerGPS's Ryan Nelson
- What's new in Poker Software with Jayme Lyttle
- News & Rumors about poker site updates coming in march!!! |
|
Re: Thoughts on Full Tilt Poker potentially killing shortstacker |
Mon Mar 01, 2010 2:13 pm |
|
| Revisted this post ... for those of you that didn't know, Full Tilt Poker did change their buy-in structure and shortstacking has been eliminated from regular tables (yay!).
FYI , Fox just wrote an article about shortstackers in NLHE games and it looks like he's come around to my viewpoint on things (yay!).
We're also expecting PokerStars to make an announcement in 2 weeks about the issue, one way or another. |
|
Re: Software that tells if I am running bad? |
Mon Apr 05, 2010 10:52 pm |
|
| Ya what he said is perfect. I just look at my graph plummeting like the Titanic and my EV graph racing towards the sky. |
|
April 2010 Podcast is Live |
Mon Apr 05, 2010 10:53 pm |
|
| You need to listen to the latest PokerSoftware podcast!
Link: http://www.pokersoftware.com/articles/2 ... izard.html
In this episode we interview Eric "DiscoBisco" Larson and talk about poker coaching and training videos at DeucesCracked and we welcome Dennis Bragg who gave us a HUUUUUGE announcement about SNG Wizard. |
|
Re: Automatically Get Missing MTT Summaries for PokerStars |
Mon Nov 15, 2010 11:31 am |
|
| Right now this is only for PT3, but if there's an update I'll look for it and post it here.
ALSO - PokerStars *just* released an update I am writing an article for. You'll now have the expressed option of saving tournament summaries to your computer just like hand histories. This should solve all the import hassle issues! |
|
Re: full tilt rush poker |
Wed May 26, 2010 2:36 am |
|
| Yah, the top level for Rush Poker is $1/$2 but given the swings and small amount of people that play that level, I don't see the site adding $2/$4 or higher anytime soon. I interviewed Taylor Caby who plays high stakes heads up, and he said he's playing 1/2 Rush, so if that caliber of player is there, unless you are awesome, I'd look to be playing a lower level of the game. |
|
Re: New tool to play Online poker with your voice |
Fri Jul 09, 2010 4:44 pm |
|
| I have to say I was really impressed with the demonstration. Pretty cool stuff and I think a lot of people will actually really enjoying using this. |
|
Re: ICM Calculator for Android Phone |
Thu Oct 21, 2010 4:24 pm |
|
| I could have used this last night at the live poker tournament I was playing in! Nice work. |
|
Re: Displaying Player Stats in Separate Window |
Thu Oct 21, 2010 4:25 pm |
|
| I haven't seen anything to allow for what you are looking for.
What a lot of people do in your situation is create a custom POP-UP window which both PT3 and HEM allow for. You can put in all the stats you want in the pop-up (which you can just click once to see) while keeping essential stats in your HUD window.
If you put up a screenshot of your HUD maybe we can figure something out. |
|
Re: full tilt rush poker |
Thu Oct 21, 2010 4:26 pm |
|
| [quote="AcesFullOfKings":3pz5bl4d]Other than getting FTP points, rush poker is kind of a joke. It doesn't even seem like poker anymore. I have yet to see the stats on whether or not it can actually be a profitable grind as opposed to a mindless button clicking fest.[/quote:3pz5bl4d]
Just an update, but $2/$4 NLHE Rush Poker has been added to Full Tilt Poker. Any FYI - it is real poker and yes you can make a decent win-rate at it ... and it's great for getting massive amounts of hands in. |
|
Re: Automatically Get Missing MTT Summaries for PokerStars |
Wed Oct 20, 2010 1:45 pm |
|
| This script is an AHK script so you'll need to copy and paste this into notepad and save it as "XXXXX.ahk" (put whatever you want for XXXXX) and if you haven't already you'll need to run AutoHotKey on your Windows computer.
I'm not the guy that made this script so I can't totally give you the "insider's scoop" rundown unfortunately but as I understand it:
You can get a list of tourneys needing summaries from PT3 with this SQL script:
[code:2hd2mb4g]SELECT tourney_holdem_summary.tourney_no as "tourney_no"
FROM tourney_holdem_summary WHERE
((SELECT sum(val_finish)
FROM tourney_holdem_results thr WHERE
thr.id_tourney = tourney_holdem_summary.id_tourney) = 0)
AND tourney_holdem_summary.id_site in (100)
ORDER BY tourney_no DESC;[/code:2hd2mb4g]
SO:
#1 Install AutoHotKey at http://www.autohotkey.com/download/
Copy and paste the script into a text file using notepad and save it as XXXXX.ahk
For the SQL script (to find out what tournaments need summaries):
go to Start | All Programs | PostGreSQL 8.3 | PGAdmin III
Open up and expand the tree on the right until you see the PT3 database.
Then head over to the Tools menu at the top and select Query Tool.
Paste in the SQL script and click the green triangle execute query button.
Copy the tourn list. Run the ahk and paste in. Make sure PS is loaded and logged in.
--> Again, we didn't make the script so you are using it at your own risk. Good luck! |
|
Automatically Get Missing MTT Summaries for PokerStars |
Tue Oct 19, 2010 12:01 pm |
|
| There's a pretty cool script for those of you that play tournaments and are missing summary files from PokerStars. The idea is that this script will go through your database and find out which tournaments require a summary file. This file tells your hand history tracking program how things finished and all the other details you would normally have to enter in manually, which can take a painstakingly long amount of time. Here's the script:
[code:4mq5z4wm]#SingleInstance, Force
#Persistent
#NoEnv
Gui, Add, Edit, H200 W200
Gui, Add, Button, w56 h20 gGo, &Go
gui, show,, Tournament Summary Requester
return
Go:
ControlGetText, Tourn_List, Edit1, Tournament Summary Requester
Loop, parse, Tourn_List, `n, `r
{
WinMenuSelectItem, PokerStars Lobby,, Requests, Tournament History...
WinWait, Tournament History ahk_class #32770, , 10
loop
{
Enabled = 0
ControlGet, Enabled, Enabled, , Edit2, Tournament History
IF (Enabled == 0)
ControlClick, Button2, Tournament History
ELSE
break
sleep, 1000
}
sleep, 1000
ControlSetText, Edit2, %A_LoopField%, Tournament History
sleep, 1000
ControlClick, Button4, Tournament History
WinWait, PokerStars ahk_class #32770,,PokerStars Lobby
sleep, 1000
ControlClick, Button1, PokerStars ahk_class #32770,,,,PokerStars Lobby
}
MsgBox, Done!
return[/code:4mq5z4wm] |
|
Re: ahk scripts for full tilt |
Thu Oct 21, 2010 4:28 pm |
|
| There used to be a program called FT Shortcuts but it was discontinued and abandoned by the original creator of the program. It might still be available but everyone tells me it's a woeful substitute for TableNinjaFT (which I use every single day!!!). |
|
Re: Poker Calculator Pro |
Fri Nov 12, 2010 1:31 am |
|
| To be honest this program is really one of a kind and Poker Pro Labs tends to make the best type of software when it comes to not just having a basic HUD but also showing things like pot odds, drawing odds and dead cards. |
|
Re: Carbon poker -table scan software |
Fri Feb 04, 2011 4:16 pm |
|
| Hey Pida, I use that filter all the time when playing at FTP or Stars. I haven't seen it work at Carbon ... and unfortunately I don't know of any programs that can pull this off. Maybe with Carbon's upcoming huge update that will allow programs to do this feature. IN the meantime what you might want to do is just make a manual note if you see the player on a bunch of tables as a Mult-Tabler. |
|
Re: A way to display big blinds? |
Fri Jan 07, 2011 6:49 pm |
|
| Actually TableNinja can do this! |
|
Re: ahk scripts for full tilt |
Wed Jan 12, 2011 1:58 pm |
|
|
Re: table scanners |
Tue Jan 18, 2011 2:54 pm |
|
| Yes!
Hold'em Manager's table scanner works on: PartyPoker, Empire, Full Tilt, Cereus (AP/UB), iPoker, PokerStars, Everest and Prima/Microgaming.
PokerTracker 3's table scanner works on Boss Media, Cereus (AP/UB), Everest, Full Tilt, iPoker, OnGame, 888, PartyGaming and PokerStars.
Both are absolutely awesome and have all the bells and whistles. |
|
Re: Time Bank on Pokerstars |
Tue Jan 25, 2011 4:31 pm |
|
| You definitely want to click that Time Bank button. As soon as you are able to, click on it. That will activate it ... while nothing will happen you should see after a few seconds the timer be activated.
What a lot of people out there do is invest some money in a script that auto-clicks the time bank, such as TableNinja (which also has a free trial). There are also some free AHK scripts (look up one of the many articles I've written here for them) that might be able to handle the task.
Good luck!! |
|