Open Side Menu Go to the Top
Register
Fulltilt hotkey to check/fold before its your turn at the table **HELP** Fulltilt hotkey to check/fold before its your turn at the table **HELP**

01-09-2013 , 03:47 PM
Is there a hotkey on ft, that allows me to check/ fold at the table which is under my mouse cursor?

I have both table ninjas (ft and ps). As you knw, the pokerstars version allows me to assign a hotkey which allows me to check/ fold the table under my mouse cursor, whether it my turn or not at that table. Where the full tilt versions hotkey, only allows me to check/fold only when it's my turn at the table, so I can't check/fold before it gets to me. This is annoying and takes up valuable time when 9 tabling.

Does anyone knw a way round this?

Not sure why table ninja (ft) isn't like pokerstars version.
Fulltilt hotkey to check/fold before its your turn at the table **HELP** Quote
01-09-2013 , 06:25 PM
my software has this hotkey but also does a lot more, so it might be overkill for you

link in profile
Fulltilt hotkey to check/fold before its your turn at the table **HELP** Quote
01-09-2013 , 06:49 PM
Works the same with TableNinjaFT. Just go to the General tab and click "Disable Advanced Action Protection".
Fulltilt hotkey to check/fold before its your turn at the table **HELP** Quote
01-09-2013 , 08:58 PM
Thanks it worked
Fulltilt hotkey to check/fold before its your turn at the table **HELP** Quote
03-17-2013 , 07:31 AM
does it still working?
Fulltilt hotkey to check/fold before its your turn at the table **HELP** Quote
03-17-2013 , 08:22 AM
AHK script for check/folding by right mouse button on Full Tilt:

Code:
#SingleInstance force
#NoEnv
#Persistent

RButton::
CoordMode, Mouse, Relative
IfWinActive, ahk_class QWidget, , Logged In As
{
WinGetPos X, Y, width, height, A
XPOS:=width*0.64
YPOS:=height*0.91
MouseClick, Left, XPOS, YPOS, 1, 0
}
return
Please test it at play money tables first.

Last edited by burzum1; 03-17-2013 at 08:29 AM.
Fulltilt hotkey to check/fold before its your turn at the table **HELP** Quote
05-09-2013 , 07:31 AM
Quote:
Originally Posted by burzum1
AHK script for check/folding by right mouse button on Full Tilt:

Code:
#SingleInstance force
#NoEnv
#Persistent

RButton::
CoordMode, Mouse, Relative
IfWinActive, ahk_class QWidget, , Logged In As
{
WinGetPos X, Y, width, height, A
XPOS:=width*0.64
YPOS:=height*0.91
MouseClick, Left, XPOS, YPOS, 1, 0
}
return
Please test it at play money tables first.
Thx for this! ... Could you tell me, how to find the XPOS and YPOS data? I would like to use this one for 888 too. Is this possible?

Thanks in advance.
Fulltilt hotkey to check/fold before its your turn at the table **HELP** Quote
05-09-2013 , 11:04 AM
Quote:
Originally Posted by Kuta
Thx for this! ... Could you tell me, how to find the XPOS and YPOS data? I would like to use this one for 888 too. Is this possible?

Thanks in advance.
I used AutoIt3 Window Spy and found width and height of Full Tilt table window, coordinates for the check/fold checkbox (X and Y) in active table window. All this data are shown in the window of AutoIt3 Window Spy.
Then I calculated coefficients for XPOS, YPOS formulas:
0.64 = X / width
0,91 = Y / height

Using my method you'll get your own coefficients for XPOS, YPOS formulas when you change the script for 888.
Also you should change name for active table window in the script (ahk_class QWidget for Full Tilt). You'll get the name of 888 table window using AutoIt3 Window Spy.
Fulltilt hotkey to check/fold before its your turn at the table **HELP** Quote
05-09-2013 , 11:27 AM
Quote:
Originally Posted by burzum1
I used AutoIt3 Window Spy and found width and height of Full Tilt table window, coordinates for the check/fold checkbox (X and Y) in active table window. All this data are shown in the window of AutoIt3 Window Spy.
Then I calculated coefficients for XPOS, YPOS formulas:
0.64 = X / width
0,91 = Y / height

Using my method you'll get your own coefficients for XPOS, YPOS formulas when you change the script for 888.
Also you should change name for active table window in the script (ahk_class QWidget for Full Tilt). You'll get the name of 888 table window using AutoIt3 Window Spy.
Perfect! Thanks a lot for your help. I'll look for AutoIt3 and try to transfer your script for 888.
Fulltilt hotkey to check/fold before its your turn at the table **HELP** Quote
05-09-2013 , 11:30 AM
Quote:
Originally Posted by Kuta
Perfect! Thanks a lot for your help. I'll look for AutoIt3 and try to transfer your script for 888.
You're welcome. You can find AutoIt3 Window Spy in AutoHotkey folder on your PC.
Fulltilt hotkey to check/fold before its your turn at the table **HELP** Quote
05-09-2013 , 01:21 PM
Quote:
Originally Posted by burzum1
You're welcome. You can find AutoIt3 Window Spy in AutoHotkey folder on your PC.

Thanks again. ... One question, is there a way to send it only to table under mouse? It always uses the active table.
Fulltilt hotkey to check/fold before its your turn at the table **HELP** Quote
05-09-2013 , 02:19 PM
Code:
#SingleInstance force
#NoEnv
#Persistent

setTimer, activator, 50
return

activator:
MouseGetPos, , , id, control
WinActivate, ahk_id %id%
return


RButton::
CoordMode, Mouse, Relative
IfWinActive, ahk_class QWidget, , Hold'em
{
WinGetPos X, Y, width, height, A
XPOS:=width*0.64
YPOS:=height*0.91
MouseClick, Left, XPOS, YPOS, 1, 0
}
return
So, I've added some lines and now it works almost perfect. The only problem is, it now activates every window under mouse. I can't find something, that checks the window for some "text" and only activates if it matches.
Fulltilt hotkey to check/fold before its your turn at the table **HELP** Quote
05-09-2013 , 08:24 PM
if its for fulltilt:

Code:
activator:
MouseGetPos, , , id, control
WinActivate, ahk_class QWidget ahk_id %id%
return
Fulltilt hotkey to check/fold before its your turn at the table **HELP** Quote
05-09-2013 , 10:34 PM
Quote:
Originally Posted by Kuta
The only problem is, it now activates every window under mouse. I can't find something, that checks the window for some "text" and only activates if it matches.
This line should apply check/folding only to 888 table window:
IfWinActive [, WinTitle, WinText, ExcludeTitle, ExcludeText]

http://www.autohotkey.com/docs/commands/IfWinActive.htm

You should recheck WinTitle, WinText for your 888 table window.
Fulltilt hotkey to check/fold before its your turn at the table **HELP** Quote
05-11-2013 , 12:19 PM
Thanks burzum! Now it works.

For anyone who is interessted:

Code:
#SingleInstance force
#NoEnv
#Persistent

setTimer, activator, 50
return

activator:
MouseGetPos, , , id, control
wingetclass,class,ahk_id%id%
wingettitle,title,ahk_id%id%
if (class="QWidget") & (instr(title, "Hold'em")>0) or (instr(title, "NLH")>0)
{
Suspend, Off
WinActivate, ahk_id %id%
}
else
Suspend, On
return

RButton::
CoordMode, Mouse, Relative
IfWinActive, ahk_class QWidget, , Hold'em
{
WinGetPos X, Y, width, height, A
XPOS:=width*0.64
YPOS:=height*0.91
MouseClick, Left, XPOS, YPOS, 1, 0
}
else
IfWinActive, , , NLH
{
WinGetPos X, Y, width, height, A
XPOS:=width*0.43
YPOS:=height*0.82
MouseClick, Left, XPOS, YPOS, 1, 0
}

return
This works for 888 and FTP. I've tested at NL Holdem Cash Tables.
Fulltilt hotkey to check/fold before its your turn at the table **HELP** Quote
07-22-2013 , 07:25 AM
Interesting thread here... I know how to read and write code, but I think I need a crash course with AHK.

I'm now using buzrum's code for FTP even on non-holdem tables.

Is there any way to mark the checkbox or click check and fold buttons without actually moving the mouse?
Perhaps moving it back to original coordinates (X,Y) --- maybe that's how other programs work?

Also, overriding right click button removes right click functions on other programs and default windows. How to fix this?

I'm looking to move all my hotkeys in PS/FTP to AHK because the POS software TableNinja is moving to a subscription model.

Last edited by bestfriend; 07-22-2013 at 07:41 AM.
Fulltilt hotkey to check/fold before its your turn at the table **HELP** Quote
07-22-2013 , 09:42 AM
The following function will post a click to any window, without moving the mouse, without even activating if desired. window needn't even be on-screen! it is awesome, and I use it in almost all scripts.
Code:
;Juks rocks
PostLeftClick(x, y, table_id, activate=1) {
; ### JUK: Send the down left click, then the mouse-up messages.
; NOTE: This is relative to the top left of the client area and NOT the top left of the
;       window (ie: It *doesn't* include the title-bar like AHK's MouseClick does!!!).
If activate
 WinActivate, ahk_id%table_id%
PostMessage, 0x201, 0x0001, ((y<<16)^x), , ahk_id%table_id%
PostMessage, 0x202 , 0, ((y<<16)^x), , ahk_id%table_id%
}
unfortunately FTP used to be a bit buggy, not responding to such messages properly sometimes. this might have changed, so it's worth a try.

Otherwise your other thought is a good one. very common to a) save current mouse position. b) set mouse move speed to 0 (or whatever it is for instant/fastest, check AHK docs) c) blockinput on d) move, click, moveback e) blockinput off. This is mostly unnoticable, but postmessage is superior if it works.

to allow click events to "pass through" from an overridden hotkey, preceed the definition with a tilde.

e.g.

Code:
~RButton::
msgbox, the normal menu will appear after this popup
return
or you can do fancier stuff with IfWinActive, ir other method to identify the window e.g.
Code:
RButton::
if (is_a_poker_table)
{
  do_custom_function()
}
else
{
  Send, {RButton}
}
return
Fulltilt hotkey to check/fold before its your turn at the table **HELP** Quote
07-22-2013 , 10:08 AM
Quote:
Originally Posted by _dave_
The following function will post a click to any window, without moving the mouse, without even activating if desired. window needn't even be on-screen! it is awesome, and I use it in almost all scripts.
Code:
;Juks rocks
PostLeftClick(x, y, table_id, activate=1) {
; ### JUK: Send the down left click, then the mouse-up messages.
; NOTE: This is relative to the top left of the client area and NOT the top left of the
;       window (ie: It *doesn't* include the title-bar like AHK's MouseClick does!!!).
If activate
 WinActivate, ahk_id%table_id%
PostMessage, 0x201, 0x0001, ((y<<16)^x), , ahk_id%table_id%
PostMessage, 0x202 , 0, ((y<<16)^x), , ahk_id%table_id%
}
you can achieve the same using the ControlClick command. it works. i've also checked the AHK source and can confirm that it indeed passes the same WM_LBUTTONDOWN messages that juk is posting directly

Quote:
unfortunately FTP used to be a bit buggy, not responding to such messages properly sometimes. this might have changed, so it's worth a try.
should work on FTP
Fulltilt hotkey to check/fold before its your turn at the table **HELP** Quote
07-22-2013 , 11:08 AM
yeah ControlClick is a good mention, I forgot about that one. Def worth a try on FTP. PostLeftClick more useful where there isn't a "real" control I guess.
Fulltilt hotkey to check/fold before its your turn at the table **HELP** Quote
07-22-2013 , 03:58 PM
Quote:
Originally Posted by _dave_
yeah ControlClick is a good mention, I forgot about that one. Def worth a try on FTP. PostLeftClick more useful where there isn't a "real" control I guess.
no what i'm saying is, you can still use ControlClick to click an x/y location on a window, regardless of whether or not theres an actual 'control' there
Fulltilt hotkey to check/fold before its your turn at the table **HELP** Quote
07-31-2013 , 06:33 PM
Are there any similar software for FT on mac? Love the built in hotkey system on stars, not sure why they haven't launched it for FT aswell.
Fulltilt hotkey to check/fold before its your turn at the table **HELP** Quote
08-21-2013 , 04:43 AM
Never used AHK before, would love right click check/fold on FTP

Could anyone give me a quick install guide pls?

Many thanks

Stan
Fulltilt hotkey to check/fold before its your turn at the table **HELP** Quote
08-21-2013 , 11:56 AM
download at www.autohotkey.com
install

right click desktop -> new AHK script
right click .ahk file -> edit script
paste code into file
save file
double click file to run
Fulltilt hotkey to check/fold before its your turn at the table **HELP** Quote
08-21-2013 , 03:56 PM
Great stuff thanks all, got it working.

Only thing is when i check/fold with right click my mouse auto moves to check button??

Also is there a option for table high lighters?

Ty, Stan
Fulltilt hotkey to check/fold before its your turn at the table **HELP** Quote
08-21-2013 , 06:40 PM
look for the FTCash script in the free software forum
Fulltilt hotkey to check/fold before its your turn at the table **HELP** Quote

      
m