Two Plus Two Newer Archives  

Go Back   Two Plus Two Newer Archives > Tournament Poker > STT Strategy
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #191  
Old 08-20-2007, 12:10 PM
Little John Little John is offline
Senior Member
 
Join Date: Dec 2006
Posts: 1,843
Default Re: My Pokerewards AHK script

[ QUOTE ]
Is this what the folder should look like?



[/ QUOTE ]

i am also getting the # Include file "functions.ahk" cannot be opened. i have scripts in the same folder as shown in picture. anyone have any ideas?
Reply With Quote
  #192  
Old 08-21-2007, 11:36 AM
darinvg darinvg is offline
Senior Member
 
Join Date: Oct 2005
Location: Boston Area
Posts: 1,067
Default Re: My Pokerewards AHK script

Not sure what your problem is John. My register script works great.
However, the auto time bank only works some of the time...
Reply With Quote
  #193  
Old 08-21-2007, 04:40 PM
fummi fummi is offline
Member
 
Join Date: May 2006
Posts: 80
Default Re: My Pokerewards AHK script

hmm, where do i get functions scripts from?! o_O
Reply With Quote
  #194  
Old 08-21-2007, 05:40 PM
NanaAnna NanaAnna is offline
Member
 
Join Date: May 2005
Location: Big Fish in a small pond
Posts: 92
Default Re: My Pokerewards AHK script

Guys I had the same problem, so I used Rolands function V2 instead of V3, and that solved that problem.

Fumml go here: Rolands Functions

Now my problem...I'm using Finnisher's script, but I can't get any of the mouse actions to work. Right click and middle click are not doing anything..any help appreciated.
Reply With Quote
  #195  
Old 09-05-2007, 04:13 PM
Jurra Jurra is offline
Junior Member
 
Join Date: Jun 2007
Posts: 7
Default Re: My Pokerewards AHK script

Thanks for the new script. I just have some problems with it, would be happy if someone could help me with it. First of all, when I press the right mouse button, nothing happends. Middle-button allin works, but right-button 2.5xbb doesnt work.

And also, when I overwrite the F1-stuff with the "cascade-thing" I get the error message:
Error: Call to nonexistent function. Specifially: PokerStarsClick(450, 100, ExFromList(tablesStars()))".

If someone who has got all the functions to work, with the cascade-ability could paste their AHK-script here, I would be very thankful.
Reply With Quote
  #196  
Old 09-05-2007, 04:44 PM
jmillerdls jmillerdls is offline
Senior Member
 
Join Date: Jul 2005
Posts: 1,704
Default Re: My Pokerewards AHK script

[ QUOTE ]
Thanks for the new script. I just have some problems with it, would be happy if someone could help me with it. First of all, when I press the right mouse button, nothing happends. Middle-button allin works, but right-button 2.5xbb doesnt work.

And also, when I overwrite the F1-stuff with the "cascade-thing" I get the error message:
Error: Call to nonexistent function. Specifially: PokerStarsClick(450, 100, ExFromList(tablesStars()))".

If someone who has got all the functions to work, with the cascade-ability could paste their AHK-script here, I would be very thankful.

[/ QUOTE ]

pretty funny...my right-click 2.5 works, but my middle button all-in doesn't.
Reply With Quote
  #197  
Old 09-05-2007, 06:56 PM
Little John Little John is offline
Senior Member
 
Join Date: Dec 2006
Posts: 1,843
Default Re: My Pokerewards AHK script

[ QUOTE ]
[ QUOTE ]
Thanks for the new script. I just have some problems with it, would be happy if someone could help me with it. First of all, when I press the right mouse button, nothing happends. Middle-button allin works, but right-button 2.5xbb doesnt work.

And also, when I overwrite the F1-stuff with the "cascade-thing" I get the error message:
Error: Call to nonexistent function. Specifially: PokerStarsClick(450, 100, ExFromList(tablesStars()))".

If someone who has got all the functions to work, with the cascade-ability could paste their AHK-script here, I would be very thankful.

[/ QUOTE ]

pretty funny...my right-click 2.5 works, but my middle button all-in doesn't.

[/ QUOTE ]

i have same problem...
Reply With Quote
  #198  
Old 10-11-2007, 05:10 PM
Finnisher Finnisher is offline
Senior Member
 
Join Date: Oct 2006
Location: Åbo
Posts: 1,117
Default Re: My Pokerewards AHK script

Insty fixed the 2.5x raise. F1 cascade, F2 close lobbies, mid-click 99999 in bet box, right-click 2.5xbb. Also clicks check in the pop-up if you try to fold when you should obv check.

[ QUOTE ]
#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, 100, ExFromList(tablesStars()))
SendPlay c
return

F2:: ;__Closes tournament lobbies
CloseTournamentLobby()
return

~MButton:: ;__Pushes all-in
MouseGetPos,,, curWin
ControlSetText, PokerStarsSliderEditorClass1, 999999, ahk_id%curWin%
return

~RButton::
WinGet,tableID,,A
WinGetTitle, title, ahk_id%tableID%
IfInString, title, No Limit Hold'em
{
RegexMatch( title, "\$?(\d+)\/\$?(\d+)", blind )
Transform, RaiseAmount, Round, blind2 * 2.5
MouseGetPos,,, curWin
ControlSetText, PokerStarsSliderEditorClass1, %RaiseAmount%, ahk_id%curWin%
}
return


Autoregister()
{
SetTitleMatchMode 2
IfWinExist, Tournament Registration
{
WinActivate
Control, Check
ControlClick, OK
}
}

CloseTournamentLobby()
{
Loop {
SetTitleMatchMode 2
IfWinExist, Lobby,, PokerStars Lobby
WinClose
else
break
}
}

NoMsgBox()
{
IfWinExist, PokerStars, OK
WinClose
IfWinExist, 63, OK
WinClose
IfWinExist, PokerStars, Check
WinClose
IfWinExist, PokerStars, Internal
Sleep 500
WinClose, PokerStars, Internal
return
}


[/ QUOTE ]
Reply With Quote
  #199  
Old 10-14-2007, 11:24 AM
middleweb middleweb is offline
Member
 
Join Date: May 2007
Posts: 57
Default Re: My PokerStars SNG AHK script

Mine freezes when I try to register for a tournament...every time. Thoughts?
Reply With Quote
  #200  
Old 10-15-2007, 05:16 PM
Tantalus747 Tantalus747 is offline
Member
 
Join Date: Oct 2007
Posts: 90
Default Re: My Pokerewards AHK script

[ QUOTE ]
[ QUOTE ]
Thanks for the new script. I just have some problems with it, would be happy if someone could help me with it. First of all, when I press the right mouse button, nothing happends. Middle-button allin works, but right-button 2.5xbb doesnt work.

And also, when I overwrite the F1-stuff with the "cascade-thing" I get the error message:
Error: Call to nonexistent function. Specifially: PokerStarsClick(450, 100, ExFromList(tablesStars()))".

If someone who has got all the functions to work, with the cascade-ability could paste their AHK-script here, I would be very thankful.

[/ QUOTE ]

pretty funny...my right-click 2.5 works, but my middle button all-in doesn't.

[/ QUOTE ]

Same problem.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 02:13 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.