I'm a poker player playing on PokerStars. Recently, due to gambling regulations, PokerStars has introduced a so called "panic button" that bans you on-click for a period of 24 hours. The button is a one-click to activate and unfortunately the ban can't be reversed so if you accidently click it, you'll just have to wait out the 24 hrs.
Anyway, I decided a couple of weeks ago to write an AHK script that blocks the button as to avoid misclicks, here's the code:
Code: Select all
Win_Hwnd := WinExist("ahk_exe PokerStars.exe ahk_class #32770")
OX := 200 ; x offset. change as needed
OY := 58 ; y offset. change as needed
; Gui Create
Gui, Color, Black
Gui, Font, s12 cRed, Bold Verdana
Gui, Add, Text,, BLOCKED
Gui, +LastFound +ToolWindow +AlwaysOnTop -Caption -Border
SetTimer, MoveWindow, 0,1
return
MoveWindow:
WinGetPos, WX, WY,,, ahk_id %Win_Hwnd%
Gui, Show, % "w238 h50 x" . (WX + OX) . " y" (WY + OY) " NoActivate"
return
Any help would be really appreciated!