Jump to content

Multi-mouse


Infinitex0
 Share

Recommended Posts

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 :think:

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 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]

Link to comment
Share on other sites

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 by nfwu
Link to comment
Share on other sites

  • 3 weeks later...
Link to comment
Share on other sites

remote mouse control to mess with your boss, anyone? Nice script :think:

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 by greenmachine
Link to comment
Share on other sites

remore? uh green r u on crack lol i think he means remote

maybe u should follow ur own advice :think:

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 by greenmachine
Link to comment
Share on other sites

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)
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...