Jump to content

Poker Playing AutoIT Bot for Stars, Hollywood and Full Tilt


Recommended Posts

Here is the source code and installation instructions for Poker Playing AutoIT Bot for Stars, Hollywood and Full Tilt. It requires Online Holdem Inspector. Written by "USBFreak"

<Code removed>

Edited by Valik
Code removed.
"I've seen your work in the past, and it's novice at best..." SmOke_N
Link to comment
Share on other sites

  • 4 months later...

Hi, I tried running your script and ran into some issues. Was hoping you could help. Looks very complicated though and well commented. Looks like you spent some time on this one :whistle: Anyways I would like to get it to work, it looks very interesting.

I followed the instructions: making folders, renaming files, editing the configuration options, etc and I ran into some errors.

Here is the first one:

Line 6 (File "C:\Poker\Main.AU3"):

********

If ^ ERROR

Error: Unable to parse line.

So I tried uncommenting Line 6 to ;******** and then I got this error:

Line 70 (File "C:\Poker\Config.AU3"):

If $PokerSite = "PokerStars" Then

If ^ ERROR

Error: Variable used without being declared.

Oh yeah also, where are these files? Below is the top of Main.au3

#include <Array.au3>

#include <file.au3>

Please see my sample code below for the configuration options I set. Thanks, any help would be appreciated. ;)

CODE:

Config.au3

-------------------------------------------------------------------------------------------------------------------

#include <Array.au3>

; Config.au3 file - configuration is done here

;********************************************************************************

;CONFIGURATION SECTION BEGINS

;Location for accounts dumping info on table they play - avoid multiple accounts at the same table

;For single box implementations change this C:\Poker\WhoWhere, or change IP for multibox situations

$ControlLocation = "C:\Poker\WhoWhere\"

;Buyin amount reintroduced due to possibility of several hundred $ to be deposited in bonus clearing effort, we don't want all that at the table at once

;Amount to put down

$BuyIn = 20

;Number of players (including our account) below which we quit table

$DesiredPlayersAtTheTable = 6

;Rename HoldemInspector2.exe to Windows.exe (or something else) to avoid detection by some sites

$HoldemInspectorAppName = "C:\Program Files\HoldemInspector2\Windows.exe"

;CONFIGURE ACCOUNT NAMES, PASSWORDS, TARGET MONEY LEVELS AND POKERSITES AT WHICH THE ACCOUNTS WILL BE PLAYING BELOW

;REALMONEY IS 0 FOR PLAY MONEY TABLES AND 1 FOR REAL MONEY TABLES, 0 IS TYPICALLY USED IN TESTING PERIOD TO MAKE SURE EVERYTHING WORKS

;$PokerSite HAS VALUES MENTIONED IN THE BOTTOM PART OF THIS SCRIPT

;MONEY LEVELS ARE DEFINED IN MAIN.AU3, MAKE SURE YOUR TARGET LEVEL IS THERE OTHERWISE SCRIPT WILL NOT BE ABLE TO FIND THE CORRECT TABLE

If "set players" = "set players" Then

;Establish what username to use, check files in C:\Poker\

;List any number of accounts you want or have

If FileExists("C:\Poker\Account1") Then

$UserID = "Account1"

$UserPassword = "password1"

$RealMoney = 0

$PokerSite = "PokerStars"

$WantedTable = "0.05"

ElseIf FileExists("C:\Poker\Account2") Then

$UserID = "Account2"

$UserPassword = "password2"

$RealMoney = 1

$PokerSite = "Hollywood"

$WantedTable = "0.15"

ElseIf FileExists("C:\Poker\Account3") Then

$UserID = "IPUTMYUSERNAMEHERE"

$UserPassword = "IPUTMYPASSWORDHERE"

$RealMoney = 1

$PokerSite = "Full Tilt"

$WantedTable = "0.25"

EndIf

EndIf

;CONFIGURATION SECTION ENDS

;********************************************************************************

---------------------------------------------------------------------------------------------------------------------

Control.au3

#include <Date.au3>

#include <file.au3>

; Control.au3 file

;********************************************************************************

;CONFIGURATION SECTION BEGINS

;For single box implementations change this C:\Poker\, or change IP for multibox situations

$ScriptLocation = "C:\Poker\"

$PathToAU3Exe = "C:\Program Files\Autoit3\win.exe "; NOTE TRAILING SPACE BEFORE CLOSING QUOTES, IT IS NEEDED

;Whatever you renamed AutoIT.exe to

$AU3ExeName = "win.exe"

;Time settings - Currently 2 time slots are defined, set your desired play times below

;$BeginTimeSlot defines hour at which the random wait time will be defined

$BeginTimeSlot1 = 8

$EndTimeSlot1 = 15

$BeginTimeSlot2 = 18

$EndTimeSlot2 = 24

;$RandomWaitTime define min and max wait time in minutes

$RandomWaitTimeMin = 30

$RandomWaitTimeMax = 60

;Force quit outside play hours, $ForceQuitOutsidePlayHours is 1 to enable and 0 to continue playing until table is quit for some other reason

$ForceQuitOutsidePlayHours = 1

;Random delay in minutes, we may not need script to quit always at the same time

$ForceQuitDelayMin = 5

$ForceQuitDelayMax = 30

;CONFIGURATION SECTION ENDS

;********************************************************************************

--------------------------------------------------------------------------------------------------------------------

Main.au3

#include <Array.au3>

#include <file.au3>

;Main.au3 file

;***************************************************************************************************

********

;CONFIGURATION SECTION BEGINS

;For single box implementations change this C:\Poker\, or change IP for multibox situations

$ScriptsLocation = "C:\Poker\"

;DO NOT TOUCH THE SECTION BELOW *************************************************

If not FileExists($ScriptsLocation & "Config.AU3") Then

MsgBox(0,$ScriptsLocation & "Config.AU3 not found", "Must be present for this thing to work")

Send("{TAB}");Kill Control.Au3

Send("{ESC}");Kill itself

EndIf

;Now that we know file exists, let's include it

;DO NOT TOUCH SECTION ABOVE******************************************************

;SET THIS LOCATION TO BE THE SAME AS $ScriptsLocation ABOVE

#include "C:\Poker\Config.AU3";Must be string, can not be variable

;CONFIGURATION SECTION ENDS

;***************************************************************************************************

********

Link to comment
Share on other sites

  • 2 years later...
  • 5 months later...

I found Zynga Poker

demo poker bot at <removed>

(WARNING.... i found virus at this rar file, but the script and au3 files is real bot)

download poker bot at <removed>

Can programmers here can analyze this script is dangerous or not.

I'm not adept in AutoIt program, please help

Edited by Valik
Link to comment
Share on other sites

I found Zynga Poker

demo poker bot at <removed>

(WARNING.... i found virus at this rar file, but the script and au3 files is real bot)

download poker bot at <removed>

Can programmers here can analyze this script is dangerous or not.

I'm not adept in AutoIt program, please help

You revived a 6 month old thread. Go away. We are not going to help you with bots here.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...