Infinitex0 Posted April 12, 2006 Posted April 12, 2006 (edited) I was bored and made this seven line script, and found it could be useful, and entertaining.(or a useless waste of your life). HotKeySet("{F9}", "_exit") While 1 MouseMove(Random(0, @DesktopWidth), Random(0, @DesktopHeight), 0) WEnd Func _exit() Exit 1 EndFunc Enjoy you will see why I call it multi-mouse. and to go with Nfwu's upgrade. Can prevent people from messing with you computer. OOPS wrong speed. PS. TO STOP PRESS F9!!!!! Edited April 12, 2006 by Infinitex0 The below statement is False.The above statement is True.a lesson I learned from Greenmachine; give a man a code and he'll solve one problem. Teach a man to code and he'll solve all his problems.P.S please don't use autoIt as a virus creator/spyware maker(keyLogger especially)Cick this and help me[center]My Scripts:[/center][center]Port Scanner[/center]
nfwu Posted April 12, 2006 Posted April 12, 2006 (edited) Small upgrate:HotKeySet("{F9}", "_exit") While 1 MouseMove(Random(0, @DesktopWidth), Random(0, @DesktopHeight), 100) WEnd Func _exit() Exit EndFunc Other that that, good code (and time waster)! #) Edited April 12, 2006 by nfwu TwitterOut of date stuff:Scripts: Sudoku Solver | Webserver | 3D library (Pure AutoIt) | Wood's GadgetsUDFs: _WoodUniqueID() | _DialogEditIni() | _Console*() | _GetIPConfigData() | _URLEncode/Decode()
techguy86 Posted April 29, 2006 Posted April 29, 2006 Sweet. Maybe I'll add "random click" and open paint. Free AutoIt paintings all around. lol My Programs:Dissolve (Updated 5-30-06)Credit Card Validator (Not created as of yet)Master Lock Combination Cracker (Updated 7-08-07)Go Site-Seeing:My Website: - Click Here
Thatsgreat2345 Posted April 29, 2006 Posted April 29, 2006 random speeds as well HotKeySet("{F9}", "_exit") While 1 MouseMove(Random(0, @DesktopWidth), Random(0, @DesktopHeight), Random(0,50)) WEnd Func _exit() Exit EndFunc
JRowe Posted April 30, 2006 Posted April 30, 2006 remote mouse control to mess with your boss, anyone? Nice script [center]However, like ninjas, cyber warriors operate in silence.AutoIt Chat Engine (+Chatbot) , Link Grammar for AutoIt , Simple Speech RecognitionArtificial Neural Networks UDF , Bayesian Networks UDF , Pattern Matching UDFTransparent PNG GUI Elements , Au3Irrlicht 2Advanced Mouse Events MonitorGrammar Database GeneratorTransitions & Tweening UDFPoker Hand Evaluator[/center]
greenmachine Posted April 30, 2006 Posted April 30, 2006 (edited) remote mouse control to mess with your boss, anyone? Nice script That's a typo. It should read: "remote mouse control to get you fired, anyone?"Sometimes you just have to think about what you're saying before you go and say it.... Edited April 30, 2006 by greenmachine
Thatsgreat2345 Posted April 30, 2006 Posted April 30, 2006 (edited) remore? uh green r u on crack lol i think he means remote maybe u should follow ur own advice Edited April 30, 2006 by thatsgreat2345
greenmachine Posted April 30, 2006 Posted April 30, 2006 (edited) remore? uh green r u on crack lol i think he means remotemaybe u should follow ur own advice Bah the one time I didn't reread my post. I should have just copy/pasted it, but instead decided to type it out. Whatever, it's the point that counts. Plus I can edit....Oh, and it's not that I wasn't thinking (I was), it's that I mistyped. Big difference. Edited April 30, 2006 by greenmachine
Simucal Posted May 4, 2006 Posted May 4, 2006 Was bored so I made it set the pixelcolor of each point it moves to, to red. #include <guiconstants.au3> HotKeySet("{F9}", "_exit") $TransWindow = GuiCreate("Transparent Window",@DesktopWidth,@DesktopHeight,0,0,$WS_POPUP) GuiSetState() WinSetTrans ( "Transparent Window", "", 100 ) While 1 $RandX = Random(0,@Desktopwidth) $RandY = Random(0,@Desktopheight) MouseMove($RandX, $RandY, 0) SetPixel($TransWindow,$RandX, $RandY, 0x0000FF) WEnd Func _exit() Exit EndFunc Func SetPixel($handle, $x, $y, $color);;; From Forum / Layers SetPixel Func $dc = DllCall("user32.dll", "int", "GetDC", "hwnd", $handle) $setpixel = DllCall("gdi32.dll", "long", "SetPixel", "long", $dc[0], "long", $x, "long", $y, "long", $color) $realesedc = DllCall("user32.dll", "int", "ReleaseDC", "hwnd", 0, "int", $dc[0]) EndFunc AutoIt Scripts:Aimbot: Proof of Concept - PixelSearching Aimbot with several search/autoshoot/lock-on techniques.Sliding Toolbar - Add a nice Sliding Toolbar to your next script. Click the link to see an animation of it in action!FontInfo UDF - Get list of system fonts, or search to see if a particular font is installed.Get Extended Property UDF - Retrieve a files extended properties (e.g., video/image dimensions, file version, bitrate of song/video, etc)
nfwu Posted May 5, 2006 Posted May 5, 2006 That gives me an idea... filling the screen radomly with dots makes a nice screen saver... #) TwitterOut of date stuff:Scripts: Sudoku Solver | Webserver | 3D library (Pure AutoIt) | Wood's GadgetsUDFs: _WoodUniqueID() | _DialogEditIni() | _Console*() | _GetIPConfigData() | _URLEncode/Decode()
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