Representing RG

That's pretty awesome , link to this game?
 
I got 42.8 seconds .. I suck
 
*launches up auto-it scripter*

Time to beat it in 0.1 seconds!
 
Oxide said:
You have to keep mouse in the circle which is randomised for 10 seconds. GF

Fine...

10.01 seconds, you've obviously never used AutoIt. It's made for doing stuff for you, randomized or not. You just have to script it right, but, I fail at scripting auto-it. It's hard!
 
I did this, Then i got annoyed with it so i gave up
 
There is where I got with autoit, then QQed because the shitty script takes like 10 minutes to draw in the box.

Only works with a 1920x1080 screen:

Code:
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Compression=4
#AutoIt3Wrapper_Run_Obfuscator=y
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#cs ----------------------------------------------------------------------------

 AutoIt Version: 3.3.5.6 (beta)
 Author:         myName

 Script Function:
	Template AutoIt script.

#ce ----------------------------------------------------------------------------

; Script Start - Add your code below here

; First challange
;MouseMove(720, 400, 0)
;MouseDown("Left")
;MouseClick("Right")
;MouseMove(1075, 400, 0)
;MouseClick("Left")

;Enter next Challange
;MouseClick("Left", 1825, 737, 1, 0)
;Top left 659, 494
;Bottom right 1161, 708

$i = 659
$x = 494
While $i < 1161
    While $x < 708
        MouseClick("Left", $i, $x, 1, 1)
        $x = $x +1
    WEnd
    $i = $i + 1
    $x = 494
WEnd

You need to uncomment the code. Does the first challenge in like... 0.1 second.
 
You're not on the top 5 anymore GF
 
Oxide said:
I can do the first challenge humanly in 0.1 second you click on the start right click then click on the second

;MouseMove(720, 400, 0)
;MouseDown("Left")
;MouseClick("Right")
;MouseMove(1075, 400, 0)
;MouseClick("Left")

OH SHIT, YOU READ MY CODE!

moves to start, left clicks, right clicks, moves the end, left clicks.
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…