Glyph Posted November 30, 2006 Posted November 30, 2006 $Pixely11=0 $Pixely12=0 $Pixely13=800 $Pixely14=600 Global $monsterlook = HotKeySet ( "{pgup}" , "monsterlook" ) ;sleep================================== While 1 sleep(365*24*60*60*1000);1 year :) WEnd ;====== QuitIt Function ======================= Func QuitIt () sleep(1000) send ("{esc}") sleep(600) send ("{up}") sleep(600) send ("{enter}") Global $QuitIt = HotKeySet ( "{END}", "QuitIt" ) Return EndFunc ;start======================== Func monsterlook() AutoItSetOption ( "PixelCoordMode", 2) ; look for yellowish square within 20 shade variations ;) $coordm = PixelSearch( $Pixely11, $Pixely12, $Pixely13, $Pixely14, 0x506D73, 20 ) If Not @error Then Send ("{+ down}") MouseClick("left") return 1 EndIf Send ("{+ up}") EndFunc I want it to send shift and mouseclick left at the same time, when one of 20 shades of 0x506D73 are in the screen... can anyone help me? tolle indicium
darkshadow791 Posted November 30, 2006 Posted November 30, 2006 Replace Send("{+ down}") with Send("+{Down}") Note Taker Lite - a note taking / converting tool.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now