Open Side Menu Go to the Top
Register
Quick Questions & Answers Thread Quick Questions & Answers Thread

01-14-2011 , 10:54 AM
problem solved. I have to run the ahk script as administrator
Quick Questions & Answers Thread Quote
01-15-2011 , 05:21 AM
I have a problem with HEM. I imported 2 times the same database and have now duplicate hands. I tried pgadmin - tech management - full and vacuum analyze, it didnt help me.. still have 28k hands instead of 14k.. anyone? also where is thread for HM?

how to export hands from exact date like I played from one PC and then from other and I want to make one database... please need help )
Quick Questions & Answers Thread Quote
01-15-2011 , 05:45 AM
Quote:
Originally Posted by lv^Fighter
also where is thread for HM?
http://forumserver.twoplustwo.com/16...-tracker-1535/
Quick Questions & Answers Thread Quote
01-15-2011 , 06:27 PM
I'm interested in the current state of table management software. Skimming the Table of Interest thread, looks like it's either not for sale or there's no support (or both?). How does Stack and Tile compare?

I would like most for something to open my tables, seat me, buy in, and move focus to active table ala TOI or Stack/Tile. Also hotkey bet/call/fold. Last request would be to automatically close and open a new table if everyone else leaves.

Is there anything out there that will do this in one program? If not, what combination would you recommend?

Last edited by DakotaKid; 01-15-2011 at 06:28 PM. Reason: I play full ring cash games, no tourneys, if it matters.
Quick Questions & Answers Thread Quote
01-17-2011 , 12:50 AM
I've come to the conclusion there really is not much money in Rush. I'm a pretty big nit, but Rush takes it to another level. It even goes beyond PF, once you get to NL 25 it's just really hard to make much money. For some reason, I can beat the regular ring games just fine up to that level.

Only problem is I can play 1300 hands an hour 4-tabling rush, and I really can't do much more than 8-table by tiling on my two monitors w/ the regular FR tables. That only yields me 560 hands an hour.

My question is, I want to try to stack tables, or have a table stacking matrix and try to play 16-tables. Is there such a thing that can tile 4-tables but stack them in a 4-table matrix. So if I'm not in a hand, it won't show up and I won't have tables popping up all of the time.Even if there is something that just stacks tables but in a certain priority. If someone could point me in the right direction that would be great. I play on Full Tilt.
Quick Questions & Answers Thread Quote
01-17-2011 , 01:16 AM
Try Stack & Tile. Placemint can make a 4x4 stack, but it won't do any prioritization of tables needing action.

Same to DakotaKid too, try Stack & Tile. Check out Master LJ's Table Retriever
Quick Questions & Answers Thread Quote
01-18-2011 , 03:15 AM
I hope this is the right thread to ask about this. Is there any way to import hand histories from the the new pokerstars home games? Some pretty cool spots came up, but I can't get PT or PokerHands to import them. Help plz
Quick Questions & Answers Thread Quote
01-18-2011 , 03:17 AM
I should add, me and my buds played about 400 hands. I had pokerstars email me the hh's since pt didn't work. Is there a way to convert the hand histories easily to where pt will recognize them?
Quick Questions & Answers Thread Quote
01-18-2011 , 09:36 AM
You need to wait for PT, PH, HM, etc, to add support for the new hand histories and release an update. Then you can import without issue.
Quick Questions & Answers Thread Quote
01-18-2011 , 11:11 AM
Just went to PT forum. It should be fixed next update. Thanks.
Quick Questions & Answers Thread Quote
01-18-2011 , 12:08 PM
Quote:
Originally Posted by BWillie
Is there such a thing that can tile 4-tables but stack them in a 4-table matrix. So if I'm not in a hand, it won't show up and I won't have tables popping up all of the time.Even if there is something that just stacks tables but in a certain priority. If someone could point me in the right direction that would be great. I play on Full Tilt.
Right now my program StackAndTile will just do one normal stack, and then place the tables into your tiled grid as they need action.

But I have plans and there have been request for a "TileAndStack" functionality where you can stack grid tables as well, to achieve your 4 tiled tables with stacks of 4 in each, i just havent gotten around to it yet
Quick Questions & Answers Thread Quote
01-18-2011 , 04:47 PM
Hello guys,

Is there some script or whatever to make color notes on Pokerstars automatically? I play with my tables overlapping and sometimes during hitting a color in note section I'm making a miss-click on another table popping up... Is there any solution like some kind of hotkey?
Quick Questions & Answers Thread Quote
01-18-2011 , 04:56 PM
Quote:
Originally Posted by Bartolomeo6
Hello guys,

Is there some script or whatever to make color notes on Pokerstars automatically? I play with my tables overlapping and sometimes during hitting a color in note section I'm making a miss-click on another table popping up... Is there any solution like some kind of hotkey?
There's an ideal Max1mums script posted here: http://forumserver.twoplustwo.com/45...otkeys-961019/

Or something more automated is notecaddy I think.
Quick Questions & Answers Thread Quote
01-18-2011 , 05:26 PM
That is for fulltilt, here is colorcoding script for PS, hover mouse cursor over opponent's seat and press ctrl+note number.
Code:
#noenv
#SingleInstance, Force

SetWinDelay,-1
SetKeydelay,-1
SetControldelay,-1

SysGet, xbord, 32
SysGet, cap, 4
return

^1::
Noteselect(1)
return

^2::
Noteselect(2)
return

^3::
Noteselect(3)
return

^4::
Noteselect(4)
return

^5::
Noteselect(5)
return

^6::
Noteselect(6)
return

^7::
Noteselect(7)
return

^8::
Noteselect(8)
return

^9::
Noteselect(9)
return

;-----------------------------------------------------------------------------------------------------
Noteselect(number)
{
mousegetpos,,,winid
wingetclass,class,ahk_id%winid%
if class=PokerStarsTableFrameClass
{
dclick(winid)
sleep,50
ColorNoteControlClick(number)
}
}
;-----------------------------------------------------------------------------------------------------
dclick(winid)
{
global xbord,cap
coordmode,mouse,relative
mousegetpos,x,y
PostLeftDoubleClick(x-xbord, y-xbord-cap, winid, 1)
}
return
;-----------------------------------------------------------------------------------------------------
ColorNoteControlClick(id)
{
winget,winid,id,A
ControlGet, v, Visible,,PokerStarsNoteSelectorClass1, ahk_id %Winid%
if v
{
BlockInput, MouseMove
BlockInput, On
wingetpos,x1,y1,w1,h1,ahk_id%winid%
coordmode,mouse,screen
mousegetpos,x2,y2
ControlGetPos, x, y, w, h, %Edit1%, ahk_id %Winid%
DllCall("SetCursorPos", int, x+x1+15, int, y+y1+10)
send {Click left}{Down %id%}{Enter}
DllCall("SetCursorPos", int, x2, int, y2)
BlockInput, MouseMoveOff
BlockInput, Off
}
}
return
;-----------------------------------------------------------------------------------------------------
PostLeftDoubleClick(x, y, table_id, activate=1) {
If activate
 WinActivate, ahk_id%table_id%
critical,6
PostMessage, 0x203 , 0, ((y<<16)^x), , ahk_id%table_id%
PostMessage, 0x202 , 0, ((y<<16)^x), , ahk_id%table_id%
critical,off
sleep,-1
}
return
;-----------------------------------------------------------------------------------------------------
Quick Questions &amp; Answers Thread Quote
01-18-2011 , 05:40 PM
oops wasn't paying enough attention obviously! ty for posting the proper script
Quick Questions &amp; Answers Thread Quote
01-18-2011 , 06:07 PM
Quote:
Originally Posted by Max1mums
That is for fulltilt, here is colorcoding script for PS, hover mouse cursor over opponent's seat and press ctrl+note number.
Code:

TY for posting! Actually it works, but only with first label color (yellow in my example) as a note... I mean, when I hover my mouse over opponent's seat and click CTRL + f.e. 3 or whatever number, it always does it Label 1 color (yellow)... any solution ? should I configure this script somehow?
Quick Questions &amp; Answers Thread Quote
01-18-2011 , 06:23 PM
Bartolomeo6, try running it as admin maybe. Do you have "Down arrow" hotkey binded for something? It is used to scroll down so scrolling may not work if you have "Down" binded.
Quick Questions &amp; Answers Thread Quote
01-18-2011 , 07:14 PM
Quote:
Originally Posted by Max1mums
Bartolomeo6, try running it as admin maybe. Do you have "Down arrow" hotkey binded for something? It is used to scroll down so scrolling may not work if you have "Down" binded.
yyyy no... I guess. I tried using it with TN and without it, so no - my down arrow isn't binded. And my account is admin-account so it doesn't matter I think.
Quick Questions &amp; Answers Thread Quote
01-18-2011 , 07:20 PM
unless you're on XP, and admin account is not the same as "run as admin" - unless you also have UAC off.
Quick Questions &amp; Answers Thread Quote
01-18-2011 , 08:53 PM
Bartolomeo6, you can try this version, it doesn't use Send command.
Code:
#noenv
#SingleInstance, Force

SetWinDelay,-1
SetKeydelay,-1
SetControldelay,-1

SysGet, xbord, 32
SysGet, cap, 4
return

^1::
Noteselect(1)
return

^2::
Noteselect(2)
return

^3::
Noteselect(3)
return

^4::
Noteselect(4)
return

^5::
Noteselect(5)
return

^6::
Noteselect(6)
return

^7::
Noteselect(7)
return

^8::
Noteselect(8)
return

^9::
Noteselect(9)
return

;-----------------------------------------------------------------------------------------------------
Noteselect(number)
{
mousegetpos,,,winid
wingetclass,class,ahk_id%winid%
if class=PokerStarsTableFrameClass
{
dclick(winid)
sleep,50
ColorNoteControlClick(number)
}
}
;-----------------------------------------------------------------------------------------------------
dclick(winid)
{
global xbord,cap
coordmode,mouse,relative
mousegetpos,x,y
PostLeftDoubleClick(x-xbord, y-xbord-cap, winid, 1)
}
return
;-----------------------------------------------------------------------------------------------------
ColorNoteControlClick(id)
{
winget,winid,id,A
ControlGet, v, Visible,,PokerStarsNoteSelectorClass1, ahk_id %Winid%
if v
{
BlockInput, MouseMove
BlockInput, On
wingetpos,x1,y1,w1,h1,ahk_id%winid%
coordmode,mouse,screen
mousegetpos,x2,y2
ControlGetPos, x, y, w, h, %Edit1%, ahk_id %Winid%
DllCall("SetCursorPos", int, x+x1+15, int, y+y1+10)
send {Click left}
DllCall("SetCursorPos", int, x+x1+15, int, y+y1+10+id*13)
send {Click left}
DllCall("SetCursorPos", int, x2, int, y2)
BlockInput, MouseMoveOff
BlockInput, Off
}
}
return
;-----------------------------------------------------------------------------------------------------
PostLeftDoubleClick(x, y, table_id, activate=1) {
If activate
 WinActivate, ahk_id%table_id%
critical,6
PostMessage, 0x203 , 0, ((y<<16)^x), , ahk_id%table_id%
PostMessage, 0x202 , 0, ((y<<16)^x), , ahk_id%table_id%
critical,off
sleep,-1
}
return
;-----------------------------------------------------------------------------------------------------
Quick Questions &amp; Answers Thread Quote
01-18-2011 , 09:38 PM
Quote:
Originally Posted by Max1mums
Bartolomeo6, you can try this version, it doesn't use Send command.
That is a great script, is it possible to have it click back to the chat tab?
Quick Questions &amp; Answers Thread Quote
01-18-2011 , 11:00 PM
newbie to the software stuff, after reading various threads in the forum, a few quick issues:

-Is there a thread where players show their ideal setups for menus/HUDs for PT3, and Hem, for mazimizing the use of stats?


-Best AHK for using the keyboard to designate various betsizes - where to download? I noticed the BetPot AHK, but I don't know how to edit anything.


-Downloaded StarsAssistant and StarsUrgentTable, and cannot get the Auto Time Bank Function to work - is there an easy fix?


-Hood made this post with code in it:
http://forumserver.twoplustwo.com/16...ts-ahk-433431/

Where/how do I paste this so it becomes a working AHK?


Thanks.

Last edited by Brad22; 01-18-2011 at 11:07 PM.
Quick Questions &amp; Answers Thread Quote
01-18-2011 , 11:41 PM
Quote:
Originally Posted by Brad22
newbie to the software stuff, after reading various threads in the forum, a few quick issues:

-Is there a thread where players show their ideal setups for menus/HUDs for PT3, and Hem, for mazimizing the use of stats?
I think there's been a few, use the search usually they're better off in the particular strat forum, so many different stats are useful to some games while useless in others. depends what you play.
Quote:
-Best AHK for using the keyboard to designate various betsizes - where to download? I noticed the BetPot AHK, but I don't know how to edit anything.
Well I'd say BetPot, but I'm biased! commands are set up by editing the text directly - but as noted that makes the learning curve steep. It means you can stack commands though, making it very customizable. just right click on default_hotkeys file, choose edit and look at the examples. if you've never programmed before, it's gonna be a bit tricky, but there are also lots of examples in the big thread.

Max1mum's StarsCash is much easier to use, does most of the same + more. Wickss StarsHotkeys is another alternative. Both have an easy GUI to set up key bindings.

Quote:
-Downloaded StarsAssistant and StarsUrgentTable, and cannot get the Auto Time Bank Function to work - is there an easy fix?
There's an edit required, Stars moved the time button in a recent update. It's posted in both their threads. But try this one, it's way better (for timebanking): http://forumserver.twoplustwo.com/45...rstars-934321/

it's just a post with code in it - so you'll need the next answer too
Quote:
-Hood made this post with code in it:
http://forumserver.twoplustwo.com/16...ts-ahk-433431/

Where/how do I paste this so it becomes a working AHK?
I presume you've already installed AutoHotkey (Basic).

Right click somewhere empty, Desktop is fine. you may want to make a folder to keep scripts in tho. Choose "New -> Autohotkey Script". give it a descriptive name.

Right click the new file, choose "Edit". it should open in Windows Notepad. delete the basic script beginnings in there already, copy & paste in the desired code from a thread. Save, close, double click the file to run

If you're on Vista / Win7 - you'll need to go in to program files and set autohotkey.exe to "always run as admin", or they won't be able to interact with other programs. possibly the same for poker client exes too.

Quote:
Thanks.
hope that's clear
Quick Questions &amp; Answers Thread Quote
01-19-2011 , 01:48 AM
Quote:
Originally Posted by spellofmaya
That is a great script, is it possible to have it click back to the chat tab?
+1

Would be great to get it to click the chat tab again as HM needs it for live tracking. I am using the first posted stars color script. Thanks!
Quick Questions &amp; Answers Thread Quote
01-19-2011 , 03:24 AM
dave, that was very clear.

Thanks for the quick and thorough answer, much appreciated.
Quick Questions &amp; Answers Thread Quote

      
m