renanzin Posted September 26, 2008 Share Posted September 26, 2008 its possible make it in autoit Pixel ''GREEN'' = MAKE SOUND ALERT one time Link to comment Share on other sites More sharing options...
AlmarM Posted September 26, 2008 Share Posted September 26, 2008 Hello,Yes its possible.Look in the help file forBeep()PixelChecksum()PixelCoordMode (Option)PixelGetColor()PixelSearch()AlmarM Minesweeper A minesweeper game created in autoit, source available. _Mouse_UDF An UDF for registering functions to mouse events, made in pure autoit. 2D Hitbox Editor A 2D hitbox editor for quick creation of 2D sphere and rectangle hitboxes. Link to comment Share on other sites More sharing options...
renanzin Posted September 26, 2008 Author Share Posted September 26, 2008 whats help ? Link to comment Share on other sites More sharing options...
Rishav Posted September 26, 2008 Share Posted September 26, 2008 In the start menu folder for Autoit, you will see a link for AutoIt Help File. open the help file. there you can search for the above listed functions. Alternately just google each function. Link to comment Share on other sites More sharing options...
renanzin Posted September 26, 2008 Author Share Posted September 26, 2008 Global $Paused HotKeySet("{F7}", "Find") While 1 Sleep (100) Wend Func Find() $coord = PixelSearch( 0, 0, 20, 300, 0x16EE66, 10 ) If Not @error Then MsgBox(0, "Ta aqui o:", $coord[0] & "," & $coord[1]) EndIf Exit 0 EndFunc How i made here to put a one sound =x when find that COLOR 0x16EE66 and for it dont stop continuos and search a colour open sound again ? Link to comment Share on other sites More sharing options...
renanzin Posted September 26, 2008 Author Share Posted September 26, 2008 woot *.* Global $Paused HotKeySet("{F7}", "Find") While 1 Sleep (100) Wend Func Find() $coord = PixelSearch( 0, 0, 20, 300, 0x16EE66, 10 ) If Not @error Then SoundPlay(@WindowsDir & "\media\tada.wav",1) EndIf Exit 0 EndFunc Now need to make script non stop =x Link to comment Share on other sites More sharing options...
2words4uready Posted September 30, 2008 Share Posted September 30, 2008 (edited) Do you mean a loop? Edited September 30, 2008 by 2words4uready Link to comment Share on other sites More sharing options...
AlmarM Posted October 8, 2008 Share Posted October 8, 2008 woot *.* Global $Paused HotKeySet("{F7}", "Find") While 1 Sleep (100) Wend Func Find() $coord = PixelSearch( 0, 0, 20, 300, 0x16EE66, 10 ) If Not @error Then SoundPlay(@WindowsDir & "\media\tada.wav",1) EndIf Exit 0 EndFunc Now need to make script non stop =x Global $Paused HotKeySet("{F7}", "Find") While 1 Sleep (100) Wend Func Find() While 2 $coord = PixelSearch( 0, 0, 20, 300, 0x16EE66, 10 ) If Not @error Then SoundPlay(@WindowsDir & "\media\tada.wav",1) EndIf WEnd Exit 0 EndFunc Minesweeper A minesweeper game created in autoit, source available. _Mouse_UDF An UDF for registering functions to mouse events, made in pure autoit. 2D Hitbox Editor A 2D hitbox editor for quick creation of 2D sphere and rectangle hitboxes. Link to comment Share on other sites More sharing options...
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