Jump to content

help with a money maker..


Recommended Posts

ok i want to make an autoit script as a bot to play an online game..

all the bot has to do is bet when it sees the sign. not bet when it sees the sign. and stop when it sees the sign.. and thats it..

this bot will make money as it will play as a bot withought a human present..

if you know how to make an autoit bot then please PM me and ill send you all the info on it..

thank you

Link to comment
Share on other sites

ok i want to make an autoit script as a bot to play an online game..

all the bot has to do is bet when it sees the sign. not bet when it sees the sign. and stop when it sees the sign.. and thats it..

this bot will make money as it will play as a bot withought a human present..

if you know how to make an autoit bot then please PM me and ill send you all the info on it..

thank you

Just so you know, this thread will be locked. Why are you going to create another topic when your answer was here?

Good luck getting help with a bot to make you money. AutoIt is not meant to be used as a bot so that you can make profit. How about you read the helpfile, learn some Pixel functions, and create it yourself. Little-to-none people will PM you, just saying.

So create another one, and this will do you good! muttley

Link to comment
Share on other sites

Please don't double post!

Is it a blackjack bot or what is it that you are trying to create?

use the pixelsearch or pixelchecksum like you were told in the other post.

you should also read the helpfile under Controlclick and maybe also controlcommand ( to see if the button you would like to click is vissible ) good luck learning autoit muttley

Regards

Link to comment
Share on other sites

Please don't double post!

Is it a blackjack bot or what is it that you are trying to create?

use the pixelsearch or pixelchecksum like you were told in the other post.

you should also read the helpfile under Controlclick and maybe also controlcommand ( to see if the button you would like to click is vissible ) good luck learning autoit muttley

Regards

ok when i lose a bet on the game there is a negative sign on how much i bet reffering to that i lost like this $-5.00

how would i get the script to recognize that?

Link to comment
Share on other sites

ok when i lose a bet on the game there is a negative sign on how much i bet reffering to that i lost like this $-5.00

how would i get the script to recognize that?

I would strongly advise you to create a mock webpage and use it for learning/practice!

Good luck,

SIone

Perilous to all of us are the devices of an art deeper than we ourselves possess.

Link to comment
Share on other sites

ok when i lose a bet on the game there is a negative sign on how much i bet reffering to that i lost like this $-5.00

how would i get the script to recognize that?

If you can find where the red is, you can pixelsearch or PixelCheckSum or PixelGetColor, and see if it's right.
Link to comment
Share on other sites

If you can find where the red is, you can pixelsearch or PixelCheckSum or PixelGetColor, and see if it's right.

im playing baccarat..

i read this ebook and it showed me how to bet on the game..

i played it for hours online in play money and it worked i won.. but my eyes starting hurting and i thought of making it into a bot..

http://rtg.mainstreetvegas.com/flash/lasvegasusacasino/flash-version.php?gameid=1&machid=0

that is where i play at..

just go to the link and start playing you dont have to register its play money..

whn you lose at the top left corner it does the $-5.00 or however much you lost

Link to comment
Share on other sites

ok when i lose a bet on the game there is a negative sign on how much i bet reffering to that i lost like this $-5.00

how would i get the script to recognize that?

If you are just trying too create a russian roulette bot that plays by the double methods so it will win 1$ each time you win no mather what.

That be very carefull about the zero and on the most casinos you could only double 17times until you reach the maximum which mean if you lose more than 17times in a row you cannot win the lost stack back..

But I'll wish you good luck trying muttley

Link to comment
Share on other sites

what is a mock webpage?

Are you joking?

create a local webage that has an image of a screen dump of the target site so you can use it to test you code while you are learning!

Perilous to all of us are the devices of an art deeper than we ourselves possess.

Link to comment
Share on other sites

  • Moderators

does anyone want to do it for me... PM me if you can

I'll do it for $1500 service fee + expenses. If you are willing to pay more PM me. muttley Edited by SmOke_N

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

Why cant you let the helpfile help you make it?

i did read the helpfile and look for what i needed and how to do it and i also did the tuts and examples..

ok can you help me with this..

i want the script to bet when it sees the banker win.. so here is an image and in red i circled the green B..

http://img33.picoodle.com/img/img33/4/7/13/f_ScreenShot0m_1e3ccba.png

when the banker wins it gets a green B at the top as you can see and when the player wins it gets the green P

can the script wait until it sees a green B and then bet on banker only on the top.. thats where the new results come in..

is that possible?

Edited by nabel
Link to comment
Share on other sites

i did read the helpfile and look for what i needed and how to do it and i also did the tuts and examples..

ok can you help me with this..

i want the script to bet when it sees the banker win.. so here is an image and in red i circled the green B..

http://img33.picoodle.com/img/img33/4/7/13/f_ScreenShot0m_1e3ccba.png

when the banker wins it gets a green B at the top as you can see and when the player wins it gets the green P

can the script wait until it sees a green B and then bet on banker only on the top.. thats where the new results come in..

is that possible?

You could do someting like this:

#include <GUIConstants.au3>
#include <Array.au3>

Global $title = "Bacarat System Bot"
Global $running
HotKeySet("{F5}","startBot")
HotKeySet("{F6}","getChecksum")

Opt("GUIOnEventMode", 1) 
Opt("GUICloseOnEsc", 1)
Opt("PixelCoordMode", 0)
Opt("MouseCoordMode", 0)

; Underneth Checksum values for the specific lost. some had in some case to checksums. 
Global $Lose025[2] = [2933807174,1011169382]
Global $Lose1[2] = [3687006366,3028836439]
Global $Lose2[1] = [117861226]
Global $Lose3[2] = [918446910,1286488918]

$GUI = GUICreate($title, 510 + 20, 390 + 50, -1, -1)
$label = GUICtrlCreateLabel("Press F5 to Start/Stop the Bacarat System Bot",80,410,370)
GUICtrlSetFont(-1,14,400,4)

$oGame = ObjCreate("ShockwaveFlash.ShockwaveFlash.1")
$GUIObj = GUICtrlCreateObj($oGame, 10, 10, 510, 390) ;734, 414)
With $oGame
    .bgcolor = 0x000000
    .Movie = "http://adv.lasvegasusacasino.com/flash/mini_flash_client.swf?token=&user=&sPassword=&funBalanceTag=Practice&forReal=false&IP=196.40.83.81&portBase=0&returnURL=&casinoName=VCO&errorURL=&gameid=1&machid=0&handcount=0&denom=0&playAgain=http://rtg.mainstreetvegas.com/flash/lasvegasusacasino/flash-version.php&playForReal=http://rtg.mainstreetvegas.com/flash/lasvegasusacasino/login.php&useLegacySystem=0"
    .Loop = True
    .wmode = "Opaque"
EndWith

GUISetOnEvent($GUI_EVENT_CLOSE, "terminate")
GUISetState()

While 1
    Sleep(10)
WEnd

Func terminate()
    Exit
EndFunc

Func startBot()
    
    While 1
        restartmode() ; the bot start in restart mode.
        bettingSystem() ; when out of restart mode the betting system begins
    WEnd
    
EndFunc

Func restartmode()
    
    $repeats = 0
    TrayTip("repeats",$repeats,10)
    Sleep(200)
    
    ; do - until loop that handles the restart mode.
    Do
        MouseClick("left",266,310) ; press banker
        MouseClick("left",424,364) ; press 1$
        MouseClick("left",265,340) ; press player
        MouseClick("left",424,364) ; press 1$
        MouseClick("left",363,378) ; press deal
        
        waitUntilDealt()
        Sleep(300)
        $result = PixelChecksum(100,80,160,95)
        Sleep(150)
        If ($result == $Lose025[0] Or $result == $Lose025[1]) Then
            $repeats = $repeats + 1
            TrayTip("repeats",$repeats,10)
            Sleep(200)
        Else
            $repeats = 0
            TrayTip("repeats",$repeats,10)
            Sleep(200)
        EndIf
        
    Until $repeats == 2
    
    Sleep(1000)
EndFunc

Func getChecksum()
    $result = PixelChecksum(100,80,160,95)
    MsgBox(0,"checksum",$result)
EndFunc

Func waitUntilDealt()
    Sleep(200)
    Do
        Sleep(10)
    Until PixelGetColor(352,376) == 0x848284
    Sleep(300)
    Do
        Sleep(10)
    Until PixelGetColor(352,376) <> 0x848284   ;PixelGetColor(366,380) == 0xFFFFFF  ;pause until it's ready to go again.
    Sleep(700)
EndFunc

Func bettingSystem()
    
    MouseClick("left",266,310) ; press banker
    MouseClick("left",424,364,3) ; press 1$ *3
    MouseClick("left",363,378) ; press deal
    waitUntilDealt()
    
    $result = PixelChecksum(100,80,160,95)
    If ($result == $Lose3[0] Or $result == $Lose3[1]) Then
        
        Return ; going back to retart mode
        
    Else
        
        MouseClick("left",266,310) ; press banker
        MouseClick("left",424,364,2) ; press 1$ *2
        MouseClick("left",363,378) ; press deal
        waitUntilDealt()
        Sleep(200)
        
        $result = PixelChecksum(100,80,160,95)
        If ($result == $Lose2[0]) Then
            
            Return ; going back to restart mode
            
        Else
            
            Sleep(200)
            Do
                MouseClick("left",266,310) ; press banker
                MouseClick("left",424,364,3) ; press 1$ *3
                MouseClick("left",363,378) ; press deal
                waitUntilDealt()
                Sleep(150)
                $result = PixelChecksum(100,80,160,95)
                Sleep(200)
            Until ($result == $Lose3[0] Or $result == $Lose3[1])
            Return
        EndIf
    EndIf
    
EndFunc

you mention that it should win to times in a row so therefor I did create the restart mode as you mentioned in the system you sent me in a PM. this is what I got so far, then you must modifie it by your self or ask in here, then you might get a little help..

BTW: I tested it a little and it doesn't work at all.. muttley it's also funny to believe that you could beat the system in this.

since I guess that the possibility for that the banker wins 3times in a row is lower. and then you're also losing a lot of money in the restart mode.

I guess it would be better to create a bot only betting on banker and the let the luck be with you :)

Good luck modifying it..

Regards

Link to comment
Share on other sites

ok when i run it i get this error any help..

"Line 37 (File "C:\users\owner\desktop\bot.au3"):

with $oGame

with ^ ERROR

ERROR: only objective-type variables allowed in a "WITH" statement.

can anyone help me out with that?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

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