[Request] mouse program

Posts 16 of 6 · Page 1 of 1
[Request] mouse program
i would like the source for a mouse program that moves your mouse down x pixles every 1/y seconds while you hold the L Shift.

Acceptable languages: AutoItv3, Visual Basic, C#, C++, Python(haha if it's possible)
I don't realy understand what your asking?,
could you be a bit more specific, then i might be able to make it.
say i was using a aimbot from a certain source... and i am sick and tired of all the headshots, i want a program that moves the mouse down while the mouse is being moved to the persons head so what it goes for body shots
K4GE nice Avi where do you get it?
i think u mean mousekeys or something so, press 5x shift than go options and than mouse, u can optimise it ther
SORRY I'M SO LATE ON THIS.. but this couldn't possibly be easier to make.. Source = AutoIt 3

Code:
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <Misc.au3>
Opt("GUIOnEventMode", 1)
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Mouse Pos Dropper", 464, 47, 229, 176)
GUISetBkColor(0x000000)
GUISetOnEvent($GUI_EVENT_CLOSE, "_Exit", $Form1)
$Label1 = GUICtrlCreateLabel("Press The Left Shift Key To Move Your Mouse Down", 21, 13, 421, 24)
GUICtrlSetFont(-1, 12, 800, 0, "MS Sans Serif")
GUICtrlSetColor(-1, 0x00FF00)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
	If _IsPressed("A0") = True Then
		MouseMove(MouseGetPos(0), MouseGetPos(1) + 20)
	EndIf
WEnd
Func _Exit()
	Exit
EndFunc
Posts 16 of 6 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

Need help?