#UPDATE ,
New codes or projects will be added in the future,
next update: login in c# with Http
New codes or projects will be added in the future,
next update: login in c# with Http
Include the library:Quote:
How do I know if my invisibility is open with "auto it"???
Download ImageSearch: [Only registered and activated users can see links. Click Here To Register...]Quote:
Code:#include <ImageSearch.au3>
Final Visual:Quote:
Code:HotKeySet("s", "checkForImage") ; key s to start HotKeySet("p", "pause") ; key p to pause global $y = 0, $x = 0 ; declare the coordinates x and y Func checkForImage() ; start the Function that searches the image Local $search = _ImageSearch("Image.bmp", 0, $x, $y, 0) ; image.bmp( put the picture you have to look) If $search = 1 Then MouseMove($x, $y, 10) ; move mouse on Image if exist EndIf EndFunc ; end func Func pause() sleep(9999) EndFunc
#include <ImageSearch.au3>
HotKeySet("p", "checkForImage")
HotKeySet("p", "pause")
global $y = 0, $x = 0
Func checkForImage()
local $search = _ImageSearch("Image.bmp", 0, $x, $y, 0)
If $search = 1 Then
MouseMove($x, $y, 10)
EndIf
EndFunc
Func pause()
sleep(9999)
EndFunc