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

01-19-2011 , 01:35 PM
spellofmaya,pokerash, and what if you need to enter note additionally? Here you go anyway.
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*17)
send {Click left}
DllCall("SetCursorPos", int, x+x1+15, int, y+y1-10)
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-19-2011 , 01:52 PM
Quote:
Originally Posted by Max1mums
spellofmaya,pokerash, and what if you need to enter note additionally? Here you go anyway.
I'm far too lazy to enter notes most of the time!!! Super thanks anyway
Quick Questions &amp; Answers Thread Quote
01-19-2011 , 07:05 PM
Quote:
Originally Posted by Max1mums
spellofmaya,pokerash, and what if you need to enter note additionally? Here you go anyway.
Thanks!
Quick Questions &amp; Answers Thread Quote
01-20-2011 , 01:17 AM
if i wanted to learn how to make my own software or scripts for stars/tilt in wine on ubuntu, where would be a good place to start?
Quick Questions &amp; Answers Thread Quote
01-20-2011 , 02:25 AM
Track down the patch that lets AHK run perfectly in wine imo, I'm sure it's out there. It's something silly like "Wine cannot register hotkeys". Infact, there appears to be a link to the patch on this page: http://bugs.winehq.org/show_bug.cgi?id=1348

The main appdb page for AHK also lists AutoHotkeyX which is rated platinum, maybe it can register hotkeys natively? couldn't find much info on a quick google tho: http://appdb.winehq.org/objectManage...estingId=44317

If you wanted more native Linux scripting, check out TableCrab, I think that's done in Python. http://forumserver.twoplustwo.com/16...indows-855744/

eta: "While RegisterHotkey is not implemented in wine, the keyboard hook works. So just remember to use #installkeybdhook and #usehook" maybe worth trying for the normal AHK exe...

Last edited by _dave_; 01-20-2011 at 02:41 AM.
Quick Questions &amp; Answers Thread Quote
01-20-2011 , 02:46 AM
thanks. i'll check it out. i don't really like table crab, because it has nothing for autofilling bet ammounts.

i installed ahk in wine a while back and tried starscash, but it lagged really badly and didn't work either.

hopefully that patch will do the trick. it would be pretty awesome if all the windows ahks worked well in ubuntu.
Quick Questions &amp; Answers Thread Quote
01-20-2011 , 05:06 AM
can anyone link me to articles or information on the difference in pushing ranges in respect to the opponents calling range,

eg a situation where the opponent is calling 5% and of hands and the icm conditions justify you to be pushing 30% of your hands, that 30% of hands should be different to the 30% that you'd be pushing into someone calling 25%
Quick Questions &amp; Answers Thread Quote
01-20-2011 , 12:40 PM
Quote:
Originally Posted by DaycareInferno
if i wanted to learn how to make my own software or scripts for stars/tilt in wine on ubuntu, where would be a good place to start?
there is an AHK re-write that aims to be cross platform, its not mature yet, but it may have some functionality for your purposes

http://www.ironahk.net/
Quick Questions &amp; Answers Thread Quote
01-20-2011 , 12:55 PM
Quote:
Originally Posted by DaycareInferno
i don't really like table crab, because it has nothing for autofilling bet amounts.
I meant more if you were wanting to write your own / learn - tablecrab no doubt has snippets of code to do the two main things, i.e. register a hotkey and post a click to the table. With those two copy / pasted, then it's just a "simple" matter (lol!) of learn python and add logic / loops to do whatever is desired between the two endpoints.

Python looks strange to me lol

Quote:
i installed ahk in wine a while back and tried starscash, but it lagged really badly and didn't work either.

hopefully that patch will do the trick. it would be pretty awesome if all the windows ahks worked well in ubuntu.
Thats a shame. I'd expect it's my Pot() function with the OCR / starspics that's causing slowness, especially if it's pre-set bets you're really wanting I'd imagine that's in use all the time. It's possible optimizations could be made, but it's hardcore coding to do it mega-fast.

It'd be nice to have a awesome Ubuntu set up, I use that all the time for everything except poker / ahk.
Quick Questions &amp; Answers Thread Quote
01-20-2011 , 03:00 PM
yeah, it would be pretty sweet, esp. since you can make a bootable usb with it. i want to put together a decent setup on ubuntu and then get a high end flash drive for it. i already have one now that uses vbox, but vbox in ubuntu with poker is just never really 100% nomatter what the box.

afaik, stars and fpdb both work pretty smoothly, and stars ui does so many more things than it used to, that really its just short a few things, like preset bets, table control hotkeys, etc.
Quick Questions &amp; Answers Thread Quote
01-21-2011 , 05:53 AM
Hi.

I was interested in buying Table of Interest but see that it is no longer available. Do you know of any other similar programmes please?

Specifically I am looking for a programme that will make it easier to arrange tables when multi-tabling on two sites simultaneously.

Thanks!
Quick Questions &amp; Answers Thread Quote
01-21-2011 , 01:41 PM
Stack And Tile, Free subforum
Quick Questions &amp; Answers Thread Quote
01-22-2011 , 06:49 AM
Thank you.
Quick Questions &amp; Answers Thread Quote
01-22-2011 , 04:14 PM
What is the best way to copy all of my hand history? My primary computer has 200k + hands and I just got a laptop so I can play on the go and when I travel but I haven't figured out a good and easy way to copy the hand history onto my only other computer that has HEM. Any ideas?
Quick Questions &amp; Answers Thread Quote
01-22-2011 , 08:59 PM
Quote:
Originally Posted by BWillie
What is the best way to copy all of my hand history? My primary computer has 200k + hands and I just got a laptop so I can play on the go and when I travel but I haven't figured out a good and easy way to copy the hand history onto my only other computer that has HEM. Any ideas?
All the hands you auto-import get moved to an archive for performance reasons. Copy the archive and import to the other PC. Your \HMArchive is likely not in your \Holdem Manager directory. We normally suggest you use C:\HMArchive, but you may have put it anywhere.

To verify the location: Options > Configure Auto Import Folders > Edit > Archive Folder: ___________________

http://faq.holdemmanager.com/questio...Import+Folders

The archive should be organized by \Month\DayOfMonth (example: D:\HMArchive\2009\07\31).


You can also export your entire database: options > database management > connect > export hands

If you play a site like stars/ftp you can email their support and ask for all your old hand histories and tourney histories/results.
Quick Questions &amp; Answers Thread Quote
01-23-2011 , 05:49 AM
Quote:
Originally Posted by Max1mums
spellofmaya,pokerash, and what if you need to enter note additionally? Here you go anyway.
Code:

Hi, it's me again, didn't have time to try this script, but now I see it still doesn't work for me - when I click Ctrl + any number I see Notes tab open with specific player name, but it doesn't implement a color note... I see really fast mouse movement over notes tab, when I do this, but it's without mouse click or sth. I use Win7, UAC off, old black table theme, hmmmm and my color notes labels differ from default...

ty for help in advance.
Quick Questions &amp; Answers Thread Quote
01-23-2011 , 04:41 PM
question - is there a time bank auto clicker for tilt that isn't tnft?
Quick Questions &amp; Answers Thread Quote
01-23-2011 , 07:14 PM
Quote:
Originally Posted by kkcountry
question - is there a time bank auto clicker for tilt that isn't tnft?
FTCash
Quick Questions &amp; Answers Thread Quote
01-23-2011 , 11:12 PM
Hi,

Does anyone know how to import PS Home Games HH' specifically?

Seems that it's a different format and HEM doesn't find/import the files, neither does Popopop's replayer.


Thanks
Quick Questions &amp; Answers Thread Quote
01-23-2011 , 11:20 PM
No doubt HEM will update pretty soon to support the home games. Just keep the HH around so you can import them when it does. As to popopop, I guess they'll update soon too. If not, we'll have to come up with a little converter (can't be too hard)
Quick Questions &amp; Answers Thread Quote
01-23-2011 , 11:26 PM
Thanks for the quick reply, I'll keep an eye on this thread as well I guess.
Quick Questions &amp; Answers Thread Quote
01-23-2011 , 11:32 PM
Quote:
Originally Posted by Deelmeout
Thanks for the quick reply, I'll keep an eye on this thread as well I guess.
Keep an eye on the releases forum for a beta/internal version - http://forums.holdemmanager.com/releases/

Or the downloads page for a release version - http://www.holdemmanager.com/store/d...ds-manuals.php

I do not have an ETA yet, for when it will be released. I think that is/was a relatively easy fix but we are trying to take care of the other issues caused by the update (for table scanner) so it may be a few days.
Quick Questions &amp; Answers Thread Quote
01-24-2011 , 02:30 PM
I'm trying to use the number pad on my notebook for hotkeys. I managed Numpad0, NumpadEnter, etc., but I can't get the other keys to work, like +, -, *, etc. I tried typing Numpad+ and also just +, but the script tells me that it is invalid.

Figured there'd be some universal way to indicate those keys, but this is for StarsHotKeys, if that changes things.
Quick Questions &amp; Answers Thread Quote
01-24-2011 , 02:48 PM
01-24-2011 , 09:21 PM
Quote:
Originally Posted by fozzy71
Keep an eye on the releases forum for a beta/internal version - http://forums.holdemmanager.com/releases/

Or the downloads page for a release version - http://www.holdemmanager.com/store/d...ds-manuals.php

I do not have an ETA yet, for when it will be released. I think that is/was a relatively easy fix but we are trying to take care of the other issues caused by the update (for table scanner) so it may be a few days.

I realized that it's the "Home" in "Home Game" and {HU OMAHA CLUB} parts at the top of each hand in a HH file that cause the problem.

When I take them out, it works fine but of course I can't do it manually for every single hand.

I'd write a script but I suck at programing big time, so thanks for looking into it, I'll check out the links you mentioned.
Quick Questions &amp; Answers Thread Quote

      
m