powerlive1 Posted September 7, 2014 Posted September 7, 2014 I want to script a script that allowed me to find a pixel (red) and jump to him and double click him. And here is what I got: HotKeySet("{F6}","_Exit") Func _Exit() Exit EndFunc Global $1 = PixelSearch(110,110,1920,1080,0xED1C24) $1 = PixelSearch(1110,1110,1920,1080,0xED1C24) While 1 MouseMove($1,$1) MouseClick("left") Sleep (200) MouseClick("left") WEnd Red = 0xED1C24 (Paint red^^) The mouse move to the left top of my desktop and he double click it but I want that he jump to the red pixel. If some one appears. Thanks in advance
BrewManNH Posted September 8, 2014 Posted September 8, 2014 PixelSearch returns an array first of all, second of all, you only check for the pixel once before entering the While loop. Considering you never test to see if you've found the pixel or not, you are just moving the mouse to some unknown (to you) location and clicking there, you're never going to accomplish what it is you want to do this way. First thing I would do though is to check the forum rules to see if what you are trying to do is allowed to be discussed here. The second thing you should do is search the forum for the answer, because this question gets asked every other day and the same script help gets posted every time. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator
13lack13lade Posted September 8, 2014 Posted September 8, 2014 (edited) removed my response as this sounds like a game. Edited September 8, 2014 by 13lack13lade
powerlive1 Posted September 8, 2014 Author Posted September 8, 2014 Hallo Thanks for the anwers. @ BrewManNH I read the Forum rules and I used the search function and don't find something that helped me with my problem. @ 13lack13lade MouseMove($1[0],$1[1]) I tryed this but a error appeared: "MouseMove($1[0],$1[1]) MouseMove/$1^ERROR Error:Subscript used on non-accessible varriable."
232showtime Posted September 8, 2014 Posted September 8, 2014 (edited) BrewManHh is pointing out that game discussion is not allowed here, what you are asking, sounds like a game automation. so you need to read the forum rules. 2nd is try to use the search function of this forum... Edited September 8, 2014 by 232showtime ill get to that... i still need to learn and understand a lot of codes Correct answer, learn to walk before you take on that marathon.
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