06-30-2008, 11:00 AM
This is a tutorial on how you hack the game curveball.
http://www.albinoblacksheep.com/flash/curveball
1:First you need autoit-v3, just google it and install it.
2:Right click on your desktop, go to new and AutoIt v3 Script.
3:Now remove all the text in the window and paste this code:
HotKeySet("{ESC}","qt")
Func qt()
Exit
EndFunc
While 1
$i=mousegetpos()
$c=PixelSearch($i[0]-50,$i[1]-50,$i[0]+50,$i[1]+50 ,14680023)
If IsArray($c) Then
MouseMove($c[0],$c[1],0)
else
$c=PixelSearch($i[0]-150,$i[1]-150,$i[0]+150,$i[1] +150,14680023)
If IsArray($c) Then MouseMove($c[0],$c[1],0)
endif
WEnd
and save it.
Now go to the game http://www.albinoblacksheep.com/flash/curveball
and run the script and press start game, Now the mouse will automatic follow the ball
http://www.albinoblacksheep.com/flash/curveball
1:First you need autoit-v3, just google it and install it.
2:Right click on your desktop, go to new and AutoIt v3 Script.
3:Now remove all the text in the window and paste this code:
HotKeySet("{ESC}","qt")
Func qt()
Exit
EndFunc
While 1
$i=mousegetpos()
$c=PixelSearch($i[0]-50,$i[1]-50,$i[0]+50,$i[1]+50 ,14680023)
If IsArray($c) Then
MouseMove($c[0],$c[1],0)
else
$c=PixelSearch($i[0]-150,$i[1]-150,$i[0]+150,$i[1] +150,14680023)
If IsArray($c) Then MouseMove($c[0],$c[1],0)
endif
WEnd
and save it.
Now go to the game http://www.albinoblacksheep.com/flash/curveball
and run the script and press start game, Now the mouse will automatic follow the ball
But i will try make some more
