itsleet Posted November 19, 2007 Posted November 19, 2007 hey guys can sum1 make a script that does this? when my mouse clicks at the location 748,667 i want it to input the number 1 and then press enter really fast....can anyone do this or tell me how plz?
Jex Posted November 19, 2007 Posted November 19, 2007 #include <Misc.au3> While 1 If _IsPressed("01") Then $Pos = MouseGetPos() If $Pos[0] = 748 And $Pos[1] = 667 Then Send("1") Send("{ENTER}") EndIf EndIf WEnd ? My scripts : Immediate Window , My Web Browser , Travian , Text Effect , Characters & Words per minute or second , Image Editor (ImageMagick) , Matrix style background effect ( Screensaver ) , Mail Sender , Protectlinks decoder and Rapidshare links checker , Fonts Fetcher , Region determine , Compare pictures , Gradient color box , Mouse Coordinates, Colors, Pixel Search things , Encrypt/Decrypt and embeding file in jpeg thing , Hard disk space monitor , Reflex game , Multiplayer Tic Tac Toe , WLM ( MSN ) personal message changer
itsleet Posted November 19, 2007 Author Posted November 19, 2007 sweet how do i make this a script that i can run?
Jex Posted November 19, 2007 Posted November 19, 2007 (edited) I think script ran but you don't understand because you can't test. You can't test because coordinate very small ( 1x1 pixel ) . #include <Misc.au3> While 1 If _IsPressed("01") Then $Pos = MouseGetPos() If $Pos[0] > 728 And $Pos[1] > 647 And $Pos[0] < 768 And $Pos[1] < 687 Then Send("1") Send("{ENTER}") EndIf EndIf WEnd Try that Edited November 19, 2007 by Jex My scripts : Immediate Window , My Web Browser , Travian , Text Effect , Characters & Words per minute or second , Image Editor (ImageMagick) , Matrix style background effect ( Screensaver ) , Mail Sender , Protectlinks decoder and Rapidshare links checker , Fonts Fetcher , Region determine , Compare pictures , Gradient color box , Mouse Coordinates, Colors, Pixel Search things , Encrypt/Decrypt and embeding file in jpeg thing , Hard disk space monitor , Reflex game , Multiplayer Tic Tac Toe , WLM ( MSN ) personal message changer
itsleet Posted November 19, 2007 Author Posted November 19, 2007 its not working im in diablo window when i do it does that matter?
Jex Posted November 19, 2007 Posted November 19, 2007 #include <Misc.au3> $Coordinate1 = 748 $Coordinate2 = 667 While 1 If _IsPressed("01") Then $Pos = MouseGetPos() If $Pos[0] > $Coordinate1 - 30 And $Pos[1] > $Coordinate2 - 30 And $Pos[0] < $Coordinate1 + 30 And $Pos[1] < $Coordinate2 + 30 Then Send("1") Send("{ENTER}") Sleep(1000) EndIf EndIf WEnd I'm tested working. Try change $Coordinate1 and $Coordinate2 My scripts : Immediate Window , My Web Browser , Travian , Text Effect , Characters & Words per minute or second , Image Editor (ImageMagick) , Matrix style background effect ( Screensaver ) , Mail Sender , Protectlinks decoder and Rapidshare links checker , Fonts Fetcher , Region determine , Compare pictures , Gradient color box , Mouse Coordinates, Colors, Pixel Search things , Encrypt/Decrypt and embeding file in jpeg thing , Hard disk space monitor , Reflex game , Multiplayer Tic Tac Toe , WLM ( MSN ) personal message changer
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