Jump to content

pixelgetcolor and ScreenCapture.au3 questions


Natas70
 Share

Recommended Posts

Hello all,

It is your least favorite noob again, with more questions about my creation of a mtgo bot.

I am having problems, with the pixelgetcolor staying the same number, when i log on and off of my computer, each time it is returning a different number.

I change the number today so it will work, log off, start it up, start mtgo, run the bot program, it checks for the pixelgetcolor and it is not recognizing it because the number is returning something different then last time. Is there something i am missing?

wll post the code in a bit

also is there a website or is in the help, that gives me some help with ScreenCapture.au3. I am having no luck with it, i was using code from another poster here in the forum, and it stops the program after taking the jpg, and lists errors concerning the jpg, never starts to read the text at all.

anyway, thanx in advance

James

Opt("PixelCoordMode", 1);thought this might help with the problem, it hasn't


while $bot = "run"

    $checksum = PixelChecksum(495,237, 785,237)

; Wait for the region to change, the region is checked every 500ms 
    While $checksum = PixelChecksum(495,237, 785,237)
        
        Sleep(500)
        
    WEnd

    $checkcolor = pixelgetcolor (540,470)
    $checkcolor2 = pixelgetcolor (633,471)
    
    ToolTip( $bot & " " & $checkcolor & " " & $checkcolor2, 0, 0)
    
               ;in the following if, checking 2 checkcolor values for highlighted or regular button color
    if (($checkcolor = "15000804") or ($checkcolor = "13355979")) and ($checkcolor2 = "0") then 
        intrade ()
        mouseclick ("left",920,455)
    EndIf
    
    if ($checkcolor = "0") and ($checkcolor2 = "15527148") then mouseclick ("left",635,470); trade canceled by customer
    mousemove (920,455)
WEnd
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...