Results 1 to 6 of 6
  1. #1
    gwentravolta's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    A cardboard Box
    Posts
    311
    Reputation
    9
    Thanks
    46

    [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)


    Posts:
    10 posts []
    50 posts []
    100 posts []
    500 posts []

    Thanks:
    5 thanks []
    10 thanks []
    100 thanks []

    Profile:
    Make a signature []
    Set a profile picture []

    Hacks:
    Download and use a hack []
    Get a virus []
    ... or two... []
    Release my own hacks []



  2. #2
    K4GE's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Posts
    311
    Reputation
    13
    Thanks
    65
    My Mood
    Inspired
    I don't realy understand what your asking?,
    could you be a bit more specific, then i might be able to make it.

  3. #3
    gwentravolta's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    A cardboard Box
    Posts
    311
    Reputation
    9
    Thanks
    46
    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


    Posts:
    10 posts []
    50 posts []
    100 posts []
    500 posts []

    Thanks:
    5 thanks []
    10 thanks []
    100 thanks []

    Profile:
    Make a signature []
    Set a profile picture []

    Hacks:
    Download and use a hack []
    Get a virus []
    ... or two... []
    Release my own hacks []



  4. #4
    YellowCake's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Shhhh.Secwet. :D
    Posts
    268
    Reputation
    10
    Thanks
    45
    My Mood
    Amazed
    K4GE nice Avi where do you get it?

  5. #5
    martijno0o0's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    242
    Reputation
    10
    Thanks
    11
    My Mood
    Stressed
    i think u mean mousekeys or something so, press 5x shift than go options and than mouse, u can optimise it ther

  6. #6
    Grim's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    5,359
    Reputation
    112
    Thanks
    3,786
    My Mood
    Cynical
    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
    Last edited by Grim; 12-06-2009 at 01:50 AM.
    Want to see my programs?
    \/ CLICK IT BITCHES \/

Similar Threads

  1. [REQUEST] Macro Program
    By dwrowla in forum Vindictus Help
    Replies: 2
    Last Post: 10-13-2011, 09:50 AM
  2. [REQUEST] - Special Program.
    By Goofyde2 in forum Combat Arms Mod Request
    Replies: 7
    Last Post: 11-18-2010, 02:17 AM
  3. [Request]Windows Programming Fifth Edition
    By 258456 in forum C++/C Programming
    Replies: 4
    Last Post: 10-11-2010, 12:14 AM
  4. [Request] Mouse Hotkey
    By CoderNever in forum Visual Basic Programming
    Replies: 3
    Last Post: 11-20-2009, 05:19 PM
  5. [Request/Suggestion] More programming sections.
    By wr194t in forum Suggestions, Requests & General Help
    Replies: 0
    Last Post: 11-06-2007, 04:46 AM

Tags for this Thread