Open Side Menu Go to the Top
Register
New script for multi-tabling pleasure: Absolute Poker Betpot by Thois New script for multi-tabling pleasure: Absolute Poker Betpot by Thois

12-09-2009 , 11:23 AM
Hey Thois, so does any of your scripts for betting pot/folding actually works ?
New script for multi-tabling pleasure: Absolute Poker Betpot by Thois Quote
03-15-2010 , 11:04 AM
I need AHK to Absolute Poker to bet 2.5bb

Anyone can help me? I have no idea about programming. I downloaded AutoHotKey but can´t use it.
New script for multi-tabling pleasure: Absolute Poker Betpot by Thois Quote
03-29-2010 , 10:49 PM
does this work and if not is there anything like this for Cereus?
New script for multi-tabling pleasure: Absolute Poker Betpot by Thois Quote
12-13-2010 , 01:46 PM
What does work exactly? Folding script is perfect, but the script at the second post doesn't even launch. The script that combines topping and potbetting doesn't want to potbet, only makes the sum of the bet = pot, but doesn't click the button. Maybe I'm doing smth wrong.
PS: I need folding(works already), topping(works buggy) and pot(or less) betting
New script for multi-tabling pleasure: Absolute Poker Betpot by Thois Quote
12-27-2010 , 06:10 AM
Quote:
Originally Posted by Galoper
I need AHK to Absolute Poker to bet 2.5bb

Anyone can help me? I have no idea about programming. I downloaded AutoHotKey but can´t use it.
+1

+ Add auto time bank clicker, pls.
New script for multi-tabling pleasure: Absolute Poker Betpot by Thois Quote
01-17-2011 , 02:35 AM
Can anyone make bet script (for example my ninja for stars hit bet button when rbutton pressed). Can you do that? It's really very intuitive to scroll for a bet and then make bet with rbutton. ty
New script for multi-tabling pleasure: Absolute Poker Betpot by Thois Quote
02-14-2011 , 06:08 PM
did some tinkering with a script. Now it checks if window under a mouse absolute window (nl holdem)

Code:
CoordMode, Mouse, Screen

; The xbutton1 mouse button clicks the fold button on the table, if you play with stacked tables behind each other than you can remove the 
; at the 2 lines below, this brings the table to the bottom of the stack once you have folded.
XButton1::
MouseGetPos,XMouse,YMouse,tableID
WinGetTitle, this_title, ahk_id%tableID%
if InStr(this_title,"NL Hold'em")>0
{
IfWinExist, ahk_id %tableID%
WinGetPos, X, Y, Width, Height
ClickX := X + (.603125*Width)
ClickY := Y + (.967*Height)
MouseClick, left, ClickX, ClickY
MouseMove, XMouse, YMouse
;sleep, 50
;WinSet, Bottom,, ahk_id %tableID%
return
}
else send {XButon1}
return

; The rbutton mouse button clicks the raise button on the table, if you play with stacked tables behind each other than you can remove the ; at the 2 lines below, this brings the table to the bottom of the stack once you have folded.
RButton::
MouseGetPos,XMouse,YMouse,tableID
WinGetTitle, this_title, ahk_id%tableID%
if InStr(this_title,"NL Hold'em")>0
{
IfWinExist, ahk_id %tableID%
WinGetPos, X, Y, Width, Height
ClickX := X + (.88*Width)
ClickY := Y + (.967*Height)
MouseClick, left, ClickX, ClickY
MouseMove, XMouse, YMouse
;sleep, 50
;WinSet, Bottom,, ahk_id %tableID%
return
}
else send {rbutton}
return

; Wheelup increases bet sizing, it works better than AP's because the table doesnt have to 
;be activated, the mouse only needs to be over the table.
WheelUp::
MouseGetPos,XMouse,YMouse,tableID
WinGetTitle, this_title, ahk_id%tableID%
if InStr(this_title,"NL Hold'em")>0
{
IfWinExist, ahk_id %tableID%
WinGetPos, X, Y, Width, Height
ClickX := X + (.98*Width)
ClickY := Y + (.87759336*Height)
MouseClick, left, ClickX, ClickY
;MouseMove, XMouse, YMouse
return
}
else send {Wheelup}
return

; Wheeldown decreases bet sizing, it works better than AP's because the table doesnt have to be activated, the mouse only needs to be over the table.
WheelDown::
MouseGetPos,XMouse,YMouse,tableID
WinGetTitle, this_title, ahk_id%tableID%
if InStr(this_title,"NL Hold'em")>0
{
IfWinExist, ahk_id %tableID%
WinGetPos, X, Y, Width, Height
ClickX := X + (.809*Width)
ClickY := Y + (.87759336*Height)
MouseClick, left, ClickX, ClickY
;MouseMove, XMouse, YMouse
return
}
else send {Wheeldown}
return
New script for multi-tabling pleasure: Absolute Poker Betpot by Thois Quote
03-10-2011 , 10:47 PM
Quote:
Originally Posted by ZARATUSTRA
+1

+ Add auto time bank clicker, pls.
#2 isnt there anyone who could do that? i guess he would earn a good amount ^^
New script for multi-tabling pleasure: Absolute Poker Betpot by Thois Quote
03-11-2011 , 01:27 AM
SeriousKeys has a time bank clicker. search 2p2 for the thread.
New script for multi-tabling pleasure: Absolute Poker Betpot by Thois Quote
03-16-2011 , 05:04 PM
I'll make a timebank clicker for you guys in a bit. Need a break from my project.
New script for multi-tabling pleasure: Absolute Poker Betpot by Thois Quote

      
m