do someone know if there is a software available that will block the view on bankroll on stars when you register to a loby ?
I want to be able to not se what is my current bankroll only if I want . I believe that it makes me more results oriented.
Thank you in advance ,
Have a great day ,
Bogdan
hay!
You have to download Autohotkey
Here is new code for PS
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
#Persistent
#SingleInstance, Force
SetTitleMatchMode, 2
SetTimer, autoreg, 1
SetTimer, autoreg, On
; THIS IS THE ONLY SETTING, true / false
autoreg_to_similar := true
return
autoreg:
Winget, ps_pid, pid, PokerStars Lobby
; THIS HANDLES THE REGISTER DIALOG
IfWinExist, Tournament Registration ahk_class #32770 ahk_pid%ps_pid%
{
WinGet, idlist, list, Tournament Registration ahk_class #32770 ahk_pid%ps_pid%
Loop, %idlist%
{
id := idlist%A_Index%
WinGet, clist, ControlList, ahk_id%id%
Loop, 20
{
if (InStr(clist, "PokerStarsButtonClass1"))
{
ControlFocus, PokerStarsButtonClass1, ahk_id%id%
ControlSend, PokerStarsButtonClass1, {SPACE}, ahk_id%id%
}
else
{
if (autoreg_to_similar)
{
ControlFocus, Button2, ahk_id%id%
ControlSend, Button2, {SPACE}, ahk_id%id%
}
ControlFocus, OK, ahk_id%id%
ControlSend, OK, {SPACE}, ahk_id%id%
}
Sleep, 1
IfWinNotExist, ahk_id%id%
{
break
}
}
Sleep, 1
}
}
; THIS WILL HANDLE ANY POPUP WITH ONLY ONE BUTTON
IfWinExist, PokerStars ahk_class #32770 ahk_pid%ps_pid%
{
WinGet, idlist, list, PokerStars ahk_class #32770 ahk_pid%ps_pid%, , Lobby
Loop, %idlist%
{
id := idlist%A_Index%
WinGet, clist, ControlList, ahk_id%id%
if (InStr(clist, "Button2") || InStr(clist, "PokerStarsButtonClass2"))
{
continue
}
else
{
Loop, 20
{
;MsgBox, hhdjsak
;WinActivate, ahk_id%id%
if (InStr(clist, "Button1"))
{
ControlFocus, Button1, ahk_id%id%
ControlSend, Button1, {SPACE}, ahk_id%id%
}
else
{
ControlFocus, PokerStarsButtonClass1, ahk_id%id%
ControlSend, PokerStarsButtonClass1, {SPACE}, ahk_id%id%
}
Sleep, 1
}
Sleep, 1
}
}
}
return
This seems to only block the pop ups, has anybody got the script that blocks bankroll? Seems to be the same on 2+2? Thanks