Page 1 of 2 12 LastLast
Results 1 to 15 of 19
  1. #1
    siksi1's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    280
    Reputation
    10
    Thanks
    1,128
    My Mood
    Tired

    Question Does this program exist or can someone make one?

    Does anyone here know if a program exists that ghosts in the background but doubles you clicking speed? I'm talking about a program that doubles your click, clicks when you click. Essentially doubling your clicking speed without being too obvious or difficult to toggle on/off? Or does anyone know of an autoclicker that's free and lets you change the click speed and the button to toggle it? I want to click a tad bit faster on Minecraft but I don't want that 20 cps that people will instantly notice. I want a clicking program that just ghosts another click instead of toggling an auto one...? Help appreciated.

  2. #2
    Eddington's Avatar
    Join Date
    Apr 2015
    Gender
    male
    Posts
    57
    Reputation
    10
    Thanks
    5
    My Mood
    Fine
    Yeah I'm sure there is just google auto clicker or along the lines of that. I don't see how this is such a hard task you have to come onto a game hacking forum looking for one. Otherwise just make an Autoit script. You can do it in like three lines.
    Last edited by Eddington; 04-14-2015 at 07:38 PM. Reason: sp

  3. #3
    OscR's Avatar
    Join Date
    Oct 2014
    Gender
    male
    Location
    Probably Bed
    Posts
    1,630
    Reputation
    325
    Thanks
    246
    My Mood
    Devilish
    my gaming mouse has a macro for t=when you pres the obtton on the side it clicks twice..
    A҉F҉T҉E҉R҉ ҉4҉ ҉Y҉E҉A҉R҉S҉,҉ ҉I҉ ҉A҉M҉ ҉B҉A҉C҉K҉ ҉O҉N҉ ҉T҉H҉I҉S҉ ҉S҉I҉T҉E҉




  4. #4
    siksi1's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    280
    Reputation
    10
    Thanks
    1,128
    My Mood
    Tired
    Quote Originally Posted by NemsOne View Post
    my gaming mouse has a macro for t=when you pres the obtton on the side it clicks twice..
    Ye something like that but I'm thinking about one where you can assign it to the left mouse button and it will double click when you click once...

  5. #5
    Gaydow's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Location
    Canada
    Posts
    8,599
    Reputation
    2675
    Thanks
    3,431
    There's a runescape auto client.. It has a autoclicker on it idk if thats what you're talking about but you can set a timer on it.

    You can Google gary's hood client or garyshood.com/rsclient/

  6. #6
    siksi1's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    280
    Reputation
    10
    Thanks
    1,128
    My Mood
    Tired
    Quote Originally Posted by Timmy Turner View Post
    There's a runescape auto client.. It has a autoclicker on it idk if thats what you're talking about but you can set a timer on it.

    You can Google gary's hood client or garyshood.com/rsclient/
    Ye, you can't rebind tho...

  7. #7
    I love myself
    나도 너를 사랑해

    Former Staff
    Premium Member
    Jhem's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    167,646,447
    Posts
    5,150
    Reputation
    1220
    Thanks
    7,394
    My Mood
    Stressed
    Code:
    if(GetAsyncKeyState(VK_LBUTTON)&1) //if you clik then
    {
    keybd_event(VK_LBUTTON, 0, 0, 0); //click again
    Sleep(10);
    }

  8. The Following User Says Thank You to Jhem For This Useful Post:

    PyrexxHero® (04-15-2015)

  9. #8
    siksi1's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    280
    Reputation
    10
    Thanks
    1,128
    My Mood
    Tired
    Quote Originally Posted by Jhem View Post
    Code:
    if(GetAsyncKeyState(VK_LBUTTON)&1) //if you clik then
    {
    keybd_event(VK_LBUTTON, 0, 0, 0); //click again
    Sleep(10);
    }
    AHK will work with this?

  10. #9
    I love myself
    나도 너를 사랑해

    Former Staff
    Premium Member
    Jhem's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    167,646,447
    Posts
    5,150
    Reputation
    1220
    Thanks
    7,394
    My Mood
    Stressed
    Quote Originally Posted by siksi1 View Post


    AHK will work with this?
    It will not. it's c++.


    - - - Updated - - -

    But you can make a simple program using vb.net or c#. using the logic of my code.

  11. #10
    siksi1's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    280
    Reputation
    10
    Thanks
    1,128
    My Mood
    Tired
    Quote Originally Posted by Jhem View Post


    It will not. it's c++.


    - - - Updated - - -

    But you can make a simple program using vb.net or c#. using the logic of my code.
    How do I convert to a simple .exe or something like that? How does one make this work

  12. #11
    Dave's Mexican's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Location
    C:\Program Files (x86)\Steam\SteamApps\common
    Posts
    792
    Reputation
    29
    Thanks
    1,330
    My Mood
    Fine
    Quote Originally Posted by siksi1 View Post


    How do I convert to a simple .exe or something like that? How does one make this work
    Code:
    Private Sub Form1_KeyDown(ByVal sender As Object, _ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown
        If e.KeyCode = Keys."'The Key You Want Here" Then
            SendKeys.Send({leftmouse})
    
        End If
    End Sub
    i think this would work in visual basic





    Quote Originally Posted by Dave84311
    Shuttup mexican
    Quote Originally Posted by Royce
    stupid mexican
    Quote Originally Posted by Hitokiri~
    Shut up stupid mexican.
    Quote Originally Posted by Hypnotized
    Why aren't you cutting my lawn?
    Quote Originally Posted by _Tavi
    Mexican
    Quote Originally Posted by Hitokiri~
    Get back to cutting my damn grass retard.


  13. #12
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,779
    My Mood
    Angelic
    Quote Originally Posted by Dave's Mexican View Post


    Code:
    Private Sub Form1_KeyDown(ByVal sender As Object, _ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown
        If e.KeyCode = Keys."'The Key You Want Here" Then
            SendKeys.Send({leftmouse})
    
        End If
    End Sub
    i think this would work in visual basic
    That is vb.net code he need ahk source code not using c++
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



  14. #13
    Mokou-Sama's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Akihabara
    Posts
    10,088
    Reputation
    515
    Thanks
    690
    My Mood
    Amused
    Quote Originally Posted by COD3RIN View Post


    That is vb.net code he need ahk source code not using c++
    He could pick VB or C++ code and compile himself. Not that hard to do. for real...
    Formerly known as gamer4evere









     
    Participated on:
    MPGH GAMING NIGHT 08/03/2015 - Town of Salem



  15. #14
    PyrexxHero®'s Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    My house
    Posts
    5,126
    Reputation
    706
    Thanks
    514
    My Mood
    Lurking
    Code:
    f5::reload
    $f6::
    loop
    {
    Click
    Sleep 500
    }
    return
    AHK. easiest, simplest autoclicker there is. Sleep 1000 is second of waiting, so 500 is 2 clicks per second. adjust to your needs. f6 is on, f5 is off
    SuperBadassExtraordinaire says (5:53 PM):
    babysitting is ghey
    Corndog says (5:53 PM):
    ur ghey
    Baron De Montesquieu..Wtf? [Czar] says (5:53 PM):
    you're a breaded hotdog

  16. #15
    Dave's Mexican's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Location
    C:\Program Files (x86)\Steam\SteamApps\common
    Posts
    792
    Reputation
    29
    Thanks
    1,330
    My Mood
    Fine
    Quote Originally Posted by COD3RIN View Post


    That is vb.net code he need ahk source code not using c++
    he could use vb.net as an alternative





    Quote Originally Posted by Dave84311
    Shuttup mexican
    Quote Originally Posted by Royce
    stupid mexican
    Quote Originally Posted by Hitokiri~
    Shut up stupid mexican.
    Quote Originally Posted by Hypnotized
    Why aren't you cutting my lawn?
    Quote Originally Posted by _Tavi
    Mexican
    Quote Originally Posted by Hitokiri~
    Get back to cutting my damn grass retard.


Page 1 of 2 12 LastLast

Similar Threads

  1. Can someone make this kind of program for me (very simple)
    By paulhaas in forum General Game Hacking
    Replies: 1
    Last Post: 06-14-2013, 02:23 PM
  2. Can someone make a useful program like this?
    By whiteknightx in forum Vindictus Help
    Replies: 0
    Last Post: 04-01-2012, 03:44 AM
  3. [Request] Someone have a Cube 2: Sauerbraten Hack ? Or can someone make one ?
    By Tiq3reye in forum Other First Person Shooter Hacks
    Replies: 2
    Last Post: 08-22-2011, 02:47 PM
  4. [REQUEST]CAN SOMEONE MAKE THIS GUN FOR ME?
    By mistaoo in forum Combat Arms Mod Discussion
    Replies: 9
    Last Post: 01-10-2010, 09:44 PM
  5. Can someone make this hack?
    By Sphearow in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 2
    Last Post: 01-06-2010, 08:09 PM