PDA

View Full Version : [Guide] Frumball Semi-Auto Play



Squirtle
10-14-2016, 06:23 AM
For those who can get shock wave games working i put together a simple script using AutoIt. It's not perfect still a work in progress to get it more accurate. All this does is gets your mouse cursor to follow the ball. It's semi auto play as it's not 100% accurate you will need to still focus and move your cursor a small amount at times when the ball is getting fast at some points in the game.

AutoIt: [Only registered and activated users can see links]
Script:
While 1
$coord = PixelSearch(0, 0, DesktopWidth, DesktopHeight, 0x185b18, 10)
If Not error Then
MouseMove ($coord[0], $coord[1], 1)
EndIf
WEnd


[Only registered and activated users can see links]