Jump to content

Birthritual576

Members
  • Posts

    7
  • Joined

  • Last visited

Birthritual576's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. I want an autoit script that will help my poker game, and I'm willing to pay for it. This is not a request for a bot or anything like that. What I want in this script is: 1. Being able to enter in an amount that will be measured against what I sit in with. For example, if I sit in with 200 and enter in my loss limit as 100 and my win limit as 200, I want it to know when those limits have been reached. 2. After the loss limit or win limit is reached, I want to be automatically logged off or the entire program closed. I prefer to play on PokerStars so the program would need to work with that. I only play on 6 seat tables, fixed limit, not sure if that is needed information or not. Maybe a script already exist like this, if so let me know but I haven' t been able to find anything. I will compensate for anyone who takes this up. Let me know and then we can talk further and answer any questions I have. I have other ideas that would help me if this is too difficult or impossible. Thanks
  2. Opt('MustDeclareVars', 1) Opt('MouseCoordMode', 0) HotKeySet('{ESC}', '_Exit') HotKeySet('^p', '_Pause') Dim $szPokerTitle, $hPokerWin, $szInput, $Pause = False $szPokerTitle = InputBox('PokerStars AutoIt', 'Please enter the window title', 'PokerStars') If Not $szPokerTitle Or Not WinExists($szPokerTitle) Then Exit WinActivate($szPokerTitle) WinWaitActive($szPokerTitle) While 1 Local $pCol = PixelGetColor(0x28, 0x40) Select Case $pCol = 0x00FF00FF Func1() EndSelect Sleep(20) WEnd Func Func1() WinWait, Charlois - $3/$6 - Limit Hold'em, IfWinNotActive, Charlois - $3/$6 - Limit Hold'em, , WinActivate, Charlois - $3/$6 - Limit Hold'em, WinWaitActive, Charlois - $3/$6 - Limit Hold'em, MouseClick, left, 743, 13 Sleep, 100 MouseClick, left, 1297, 13 Sleep, 100 WinWait, PokerStars Lobby, IfWinNotActive, PokerStars Lobby, , WinActivate, PokerStars Lobby, WinWaitActive, PokerStars Lobby, MouseClick, left, 765, 6 Sleep, 100 EndFunc Func _Pause() $Pause = Not $Pause While $Pause ToolTip('Press F7 to resume', @DesktopWidth-100, @DesktopHeight-35) Sleep(100) WEnd ToolTip('') EndFunc Func _Exit() ToolTip('') Exit EndFunc am i on the right track? (the name of the table, in this case Charlois, is an example)
  3. How do I find the information for the part of the table that displays how much money i have and read that? also, would it be easier to set this up using the keyboard instead of the mouse? by that I mean that alt f4 closes out the windows at pokerstars, like clicking the x. if i can get it to read the amount i start with, then all i would have to do is enter in the amounts i would want to quit at after i won/loss that amount. is there a good example of a script that is associated with reading an amount and then acting upon when it reaches a certain amount?
  4. Thanks thats a big help. Though I dont understand how i search for pixels. is that the size of the window or where the buttons/mouse clicks will be?
  5. http://www.pokerinspector.com/forum/viewto...e98d347fbf2e963 this shows examples of a bot i believe. if possible, maybe i could modify it down to do what i ask. a poker bot doesnt really help u win, maybe against beginners, and it usually means u get kicked from the site if its detected, so its no good for me. i just want something to help protect my bankroll from myself.
  6. I play on Pokerstars at the moment, if that helps, but the site does use buttons. when u sit in at a table, a window pops up that ask how much u want to start with. this may be where i want to look at but i dont know. ill take a look at the autoit window info tool and see if i can understand it.
  7. I am a complete noob to autoit and scripts. Ive messed around with examples and gotten somethings to work by myself. So forgive me if it seems by asking im taking the easy way out. But what Im trying to do is create a script for online poker (not a bot) that I can enter in an amount for plus/minus, then when that amount is reached it logs me off of the program and closes it. For example, if the amount is 100, then when i reach 100 more or less than I started with, it will close out automatically. Im thinking it will have to take into account my seat or whatever it can to track my money. Can someone recommend me an example of something like this? Thanks a lot
×
×
  • Create New...