![]() |
|
#81
|
|||
|
|||
|
can ne one help out someone who has never used AHK before and explain to me how i go about to get this thing working? because this is 1 sick thing... p.s. i tried the OP steps but couldnt fiqure it out
|
|
#82
|
|||
|
|||
|
[ QUOTE ]
can ne one help out someone who has never used AHK before and explain to me how i go about to get this thing working? because this is 1 sick thing... p.s. i tried the OP steps but couldnt fiqure it out [/ QUOTE ] Ok, first go here (http://forumserver.twoplustwo.com/sh...ue#Post7731287) scroll to the bottom of the screen and click on the link Handsome posted and download the files and save them to your computer. Once you have them saved (there should be two files), right click on the "stars autoreg..." and choose "edit." Then delete everything in there and replace it with the following by copying and pasting: #NoEnv #Persistent #SingleInstance force #Include %a_scriptDir% #Include Functions.ahk interval = 100 ; period between refreshes Loop { AutoRegister() NoMsgBox() Sleep %interval% } F1:: ;__Cascades tables PostStarsClick(450, 60, ExFromList(tablesStars())) SendPlay c return F2:: ;__Closes tournament lobbies CloseTournamentLobby() return ~MButton:: ;__Pushes all-in MouseGetPos,,, curWin ControlSetText, Edit7, 999999, ahk_id%curWin% return ~RButton:: WinGet,id,,A WinGetTitle, title, ahk_id%id% IfInString, title, No Limit Hold'em { Slash := Instr(title, "/") + 2 Space := Instr(title, " ", false, Slash) BBLength := Space - Slash StringMid, Bigblind, title, Slash, BBLength Transform, RaiseAmount, Round, Bigblind * 2.5 MouseGetPos,,, curWin ControlSetText, Edit7, %RaiseAmount%, ahk_id%curWin% } return Autoregister() { SetTitleMatchMode 2 IfWinExist, Tournament Registration ControlClick, Button1 ControlClick, OK } CloseTournamentLobby() { Loop { SetTitleMatchMode 2 IfWinExist, Lobby,, PokerStars Lobby WinClose else break } } NoMsgBox() { IfWinExist, PokerStars, OK WinClose IfWinExist, PokerStars, Internal Sleep 500 WinClose, PokerStars, Internal return } Then go to File and click "save" and you should be good. When you want to use them while playing, just double click on each file and then you should see two little green H's in your toolbar so you know they're running. |
|
#83
|
|||
|
|||
|
Apparently AVG virus scan now thinks AHK is a trojan horse.
|
|
#84
|
|||
|
|||
|
[ QUOTE ]
Thanks Finnisher. Does this script have any additions or does it do anything differently than the original? [/ QUOTE ] No, it's all handsome's stuff. It's the original but it has the all-in and 2.5x from the update. |
|
#85
|
|||
|
|||
|
Great stuff, guys. This is why I released the script as open source.
|
|
#86
|
|||
|
|||
|
when i click the link at the bottom of the first page i get "The file can't be found on the requested server."
|
|
#87
|
|||
|
|||
|
By "*" do you mean shift 8? Or something else? Holding the mouse pad down works for me.
|
|
#88
|
|||
|
|||
|
Help me out guys.
I am trying to assign a command to the numpad + key, but I don't know what it is called. I have tried "numpad+", "numpadplus" and some variations, alas to no avail... Same goes for !"numpad-" and "numpad ./del" |
|
#90
|
|||
|
|||
|
Thx Juk!
|
![]() |
|
|