Results 1 to 25 of 25

Thread: Help with AutoClicker

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Apr 2010
    Posts
    23

    Unhappy Help with AutoClicker

    Well. I need help with a small app.
    I wrote AutoClicker mouse.
    But there is a problem. I do not know how to do "How many clicks."
    http://s43.radikal.ru/i102/1004/a5/296cbe2b150e.png
    Please help me.
    Source: http://hcbcs.ru/AutoClicker.rar

  2. #2
    Wait... what? weirddemon's Avatar
    Join Date
    Jan 2009
    Location
    USA
    Posts
    3,826

    Re: Help with AutoClicker

    If I may ask, what are your intentions with this application?
    CodeBank contributions: Process Manager, Temp File Cleaner

    Quote Originally Posted by SJWhiteley
    "game trainer" is the same as calling the act of robbing a bank "wealth redistribution"....

  3. #3
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Help with AutoClicker

    I'm interested in the answer to this question as well.

  4. #4

    Thread Starter
    Junior Member
    Join Date
    Apr 2010
    Posts
    23

    Re: Help with AutoClicker

    #2 experience

  5. #5
    Lively Member
    Join Date
    Apr 2010
    Location
    York, Uk
    Posts
    103

    Re: Help with AutoClicker

    Nothing to do with cheating at games ?
    attach the code your running for the "click" button?

  6. #6
    Addicted Member DramaQueen's Avatar
    Join Date
    Mar 2010
    Posts
    187

    Re: Help with AutoClicker

    Code:
    Dim HowManyClicks As Int32 = 100
    
    For i As Int32 = 0 To HowManyClicks
        Click()
    Next
    
    'Clicking finished
    As simple as that, but why wouldn't you set a global hotkey to start/stop the clicking? Or even better, hook MouseLeftDown() and start clicking, and on MouseLeftUp() stop it.

  7. #7
    Addicted Member DramaQueen's Avatar
    Join Date
    Mar 2010
    Posts
    187

    Re: Help with AutoClicker

    Quote Originally Posted by Hack View Post
    I'm interested in the answer to this question as well.
    Just out of curiosity, what do you have against cheating in games anyways? It's way more fun than actually playing the games, very good practice and motivation for learning a bit more advanced aspects of programming. Also AFAIK it doesn't violate any terms of service as long as any copyrights aren't broken(modifying game clients, etc).

  8. #8
    Lively Member
    Join Date
    Apr 2010
    Location
    York, Uk
    Posts
    103

    Re: Help with AutoClicker

    Quote Originally Posted by DramaQueen View Post
    Code:
    Dim HowManyClicks As Int32 = 100
    
    For i As Int32 = 0 To HowManyClicks
        Click()
    Next
    
    'Clicking finished
    As simple as that, but why wouldn't you set a global hotkey to start/stop the clicking? Or even better, hook MouseLeftDown() and start clicking, and on MouseLeftUp() stop it.
    do you mean like:

    for ( int a= 0; a<= HowManyClicks; a++ )
    {
    SendMessage(Hwnd,WM_LBUTTONDOWN, BUTTON,Coords);
    SendMessage(Hwnd,WM_LBUTTONUP,MK_LBUTTON,Coords);
    Sleep(mSeconds);
    }

    that way you can add in a delay also :P

  9. #9
    Addicted Member DramaQueen's Avatar
    Join Date
    Mar 2010
    Posts
    187

    Re: Help with AutoClicker

    Quote Originally Posted by Joshwah! View Post
    do you mean like:

    for ( int a= 0; a<= HowManyClicks; a++ )
    {
    SendMessage(Hwnd,WM_LBUTTONDOWN, BUTTON,Coords);
    SendMessage(Hwnd,WM_LBUTTONUP,MK_LBUTTON,Coords);
    Sleep(mSeconds);
    }

    that way you can add in a delay also :P
    Ingenious.

  10. #10

    Thread Starter
    Junior Member
    Join Date
    Apr 2010
    Posts
    23

    Re: Help with AutoClicker

    Quote Originally Posted by DramaQueen View Post
    Code:
    Dim HowManyClicks As Int32 = 100
    
    For i As Int32 = 0 To HowManyClicks
        Click()
    Next
    
    'Clicking finished
    As simple as that, but why wouldn't you set a global hotkey to start/stop the clicking? Or even better, hook MouseLeftDown() and start clicking, and on MouseLeftUp() stop it.
    Hmm. Can you show how it works in the source?

  11. #11
    I'm about to be a PowerPoster! kleinma's Avatar
    Join Date
    Nov 2001
    Location
    NJ - USA (Near NYC)
    Posts
    23,373

    Re: Help with AutoClicker

    Quote Originally Posted by DramaQueen View Post
    Just out of curiosity, what do you have against cheating in games anyways? It's way more fun than actually playing the games, very good practice and motivation for learning a bit more advanced aspects of programming. Also AFAIK it doesn't violate any terms of service as long as any copyrights aren't broken(modifying game clients, etc).
    It voilates the terms of usage of this forum. It also voilates most game agreements, as copyright has nothing to do with this. It has everything to do with playing games online and cheating, which is what most people are after, and clearly against the user agreement you agreed to when installing the game. I don't know why you have a tendency to post in all these semi-malicious forum questions, but with a name like dramaqueen i guess it doesn't surprise me.

  12. #12
    Addicted Member DramaQueen's Avatar
    Join Date
    Mar 2010
    Posts
    187

    Re: Help with AutoClicker

    Quote Originally Posted by kleinma View Post
    It voilates the terms of usage of this forum. It also voilates most game agreements, as copyright has nothing to do with this. It has everything to do with playing games online and cheating, which is what most people are after, and clearly against the user agreement you agreed to when installing the game. I don't know why you have a tendency to post in all these semi-malicious forum questions, but with a name like dramaqueen i guess it doesn't surprise me.
    There's nothing malicious in game cheating, it's just fun. While some of you dislike it, as long as any laws aren't broken I see no reason not to help them achieve their goals, not to mention letting others do it. I read these rules and I'm pretty sure they don't have anything against legal third party software with questionable morale(in some peoples opinion), though don't get me wrong - I'm not arguing about the rules with a moderator, I'm sure there's some other set of them somewhere, that I just couldn't find.

    Kind regards

    PS. I post in the 'semi-malicious' threads as you put it, because I love the attention, just like you guessed from my name!
    PSS. You mis-spelled violate twice.

  13. #13
    eXtreme Programmer .paul.'s Avatar
    Join Date
    May 2007
    Location
    Chelmsford UK
    Posts
    26,423

    Re: Help with AutoClicker

    Quote Originally Posted by DramaQueen View Post
    PS. I post in the 'semi-malicious' threads as you put it, because I love the attention, just like you guessed from my name!
    PSS. You mis-spelled violate twice.
    ps. you misused pps
    pps. i noticed that too, but why quibble?

  14. #14
    I'm about to be a PowerPoster! kleinma's Avatar
    Join Date
    Nov 2001
    Location
    NJ - USA (Near NYC)
    Posts
    23,373

    Re: Help with AutoClicker

    It would fall under this rule:

    You will not use these Forums for the purposes of sharing or distributing viruses, licenses, registration information, software keys, "cracks," or other information designed to do harm to or allow unlawful access to any computer hardware, software, networks, or any other systems

    or if that doesn't do it for you, how about this one:

    You will, if asked by a representative of the Forums, cease posting any content, and/or links to content, deemed offensive, objectionable, or in poor taste by the staff of the Forums.

    as for my spelling, i tend to think faster than i type, especially when a member is annoying me

  15. #15
    Frenzied Member stateofidleness's Avatar
    Join Date
    Jan 2009
    Posts
    1,780

    Re: Help with AutoClicker

    Quote Originally Posted by Joshwah! View Post
    do you mean like:

    for ( int a= 0; a<= HowManyClicks; a++ )
    {
    SendMessage(Hwnd,WM_LBUTTONDOWN, BUTTON,Coords);
    SendMessage(Hwnd,WM_LBUTTONUP,MK_LBUTTON,Coords);
    Sleep(mSeconds);
    }

    that way you can add in a delay also :P

    that'd be great... but this is the VB forum.

    Quote Originally Posted by Kleinma
    It voilates the terms of usage of this forum. It also voilates most game agreements, as copyright has nothing to do with this. It has everything to do with playing games online and cheating, which is what most people are after, and clearly against the user agreement you agreed to when installing the game. I don't know why you have a tendency to post in all these semi-malicious forum questions, but with a name like dramaqueen i guess it doesn't surprise me.
    +1

    *aside*
    I love how people assume a good aimbot is merely repetition of mouse clicks. I see this often. There's so much more to creating a GOOD (read undetectable, consistent, ability to toggle and customize sensitivity, etc) aimbot than just automating mouse clicks. I can click faster than your For loop

  16. #16
    Addicted Member DramaQueen's Avatar
    Join Date
    Mar 2010
    Posts
    187

    Re: Help with AutoClicker

    Quote Originally Posted by kleinma View Post
    It would fall under this rule:

    You will not use these Forums for the purposes of sharing or distributing viruses, licenses, registration information, software keys, "cracks," or other information designed to do harm to or allow unlawful access to any computer hardware, software, networks, or any other systems

    or if that doesn't do it for you, how about this one:

    You will, if asked by a representative of the Forums, cease posting any content, and/or links to content, deemed offensive, objectionable, or in poor taste by the staff of the Forums.

    as for my spelling, i tend to think faster than i type, especially when a member is annoying me
    I did read that rule(the first one), and my point was that it disallows information designed to allow unlawful access to software, which in plenty of cases regarding cheating in games isn't the case. Nevertheless, I admit I was a bit out of line, it's your call what you want in the forums and what not, there's a plenty of other forums for the 'semi-malicious' stuff. Terribly sorry for pissing you off, I promise to stop crusading for cheating-rights from now on!

  17. #17
    Addicted Member DramaQueen's Avatar
    Join Date
    Mar 2010
    Posts
    187

    Re: Help with AutoClicker

    Quote Originally Posted by stateofidleness View Post
    that'd be great... but this is the VB forum.



    +1

    *aside*
    I love how people assume a good aimbot is merely repetition of mouse clicks. I see this often. There's so much more to creating a GOOD (read undetectable, consistent, ability to toggle and customize sensitivity, etc) aimbot than just automating mouse clicks. I can click faster than your For loop
    When did the subject of an aimbot come up? AFAIK this thread's just about a simple autoclicker..? And aimbots aren't that complicated, they basically consist of reading some data from the client, calculating the angle and in a way or another send the shoot packet with those parameters.

  18. #18
    Frenzied Member stateofidleness's Avatar
    Join Date
    Jan 2009
    Posts
    1,780

    Re: Help with AutoClicker

    Quote Originally Posted by DramaQueen View Post
    When did the subject of an aimbot come up? AFAIK this thread's just about a simple autoclicker..?
    so what other use is there to autoclick repetively?
    I'm not one to throw around post count, but it's come up more than once (read A LOT). It's usually used for an aimbot. That's just fact.

    Quote Originally Posted by DramaQueen View Post
    And aimbots aren't that complicated, they basically consist of reading some data from the client, calculating the angle and in a way or another send the shoot packet with those parameters.
    that meets maybe 1 criteria i listed for a good aimbot, and AT THAT, i'd like to see you accomplish that without using a hook.

    /end aimbot discussion

  19. #19
    Addicted Member DramaQueen's Avatar
    Join Date
    Mar 2010
    Posts
    187

    Re: Help with AutoClicker

    Quote Originally Posted by stateofidleness View Post
    so what other use is there to autoclick repetively?
    I'm not one to throw around post count, but it's come up more than once (read A LOT). It's usually used for an aimbot. That's just fact.



    that meets maybe 1 criteria i listed for a good aimbot, and AT THAT, i'd like to see you accomplish that without using a hook.

    /end aimbot discussion
    There's a plenty of uses to autoclick repetively! Most importantly - THIS!
    Yeah better end the aimbot discussion before we both get banned

  20. #20
    I'm about to be a PowerPoster! kleinma's Avatar
    Join Date
    Nov 2001
    Location
    NJ - USA (Near NYC)
    Posts
    23,373

    Re: Help with AutoClicker

    Quote Originally Posted by DramaQueen View Post
    There's a plenty of uses to autoclick repetively! Most importantly - THIS!
    Yeah better end the aimbot discussion before we both get banned
    Yeah that rule number 3 they have of "no auto-clickers of ANY kind" should just be thrown out the window right?

  21. #21
    Frenzied Member stateofidleness's Avatar
    Join Date
    Jan 2009
    Posts
    1,780

    Re: Help with AutoClicker

    Quote Originally Posted by DramaQueen View Post
    There's a plenty of uses to autoclick repetively! Most importantly - THIS!
    Yeah better end the aimbot discussion before we both get banned
    what do you mean "Most importantly"... all you did was prove my point. The only use of an automatic repetitive clicker is to cheat (whether it'd be on games, tests, whatever)

  22. #22

    Re: Help with AutoClicker

    Quote Originally Posted by stateofidleness View Post
    what do you mean "Most importantly"... all you did was prove my point. The only use of an automatic repetitive clicker is to cheat (whether it'd be on games, tests, whatever)
    I think DramaQueen was being sarcastic.

    I'm really surprised this topic hasn't been labeled as against the ToC and closed; it's been here for a few days now.

  23. #23
    Lively Member
    Join Date
    Apr 2010
    Location
    York, Uk
    Posts
    103

    Re: Help with AutoClicker

    *nibbles thoughtfully on some popcorn*

  24. #24
    Addicted Member DramaQueen's Avatar
    Join Date
    Mar 2010
    Posts
    187

    Re: Help with AutoClicker

    Quote Originally Posted by kleinma View Post
    Yeah that rule number 3 they have of "no auto-clickers of ANY kind" should just be thrown out the window right?
    Exactly, glad you got the point

  25. #25
    PowerPoster boops boops's Avatar
    Join Date
    Nov 2008
    Location
    Holland/France
    Posts
    3,201

    Re: Help with AutoClicker

    I'll admit from the start I knew nothing about click bots, and now I've consumed almost as much popcorn as Joshwah! in this thread. It seems to me that a click bot must be pretty easy to make. But the interesting thing would be think of ways to defeat a click bot. Here's my take, based on the click-as-fast-as-you-can game Drama Queen linked to.

    First of all, no mouse in existence can be clicked at more than a certain speed, let's say 10 times a second. So you disqualify any entries with an average click rate over 10 per second. Then, a human being cannot click a mouse with absolute regularity, so a real person's click rate will show a certain standard deviation. So you disqualify any entries that show an un-humanlike standard deviation.

    Right, all the bot makers are clever guys so they are going to suss out the game's maximum click rate and statistical model, and build their bots accordingly. The result? Ten thousand bots all come equal first. Yawn.

    Anyway, the clever games designer will be able to study all the data collected and figure out a more sophisticated statistical test to measure the quality of different click bots. Once that is built in, the bot makers can set to work again. So you see, it's a statistical arms race.

    Where does it end up? Two world-class mathematicians will be punching it out for click supremacy. The rest of the games designers will have well paid jobs with boring companies. And the less brilliant bot designers will be scrawling tags on bridges or other useful work.

    Wajja think?

    BB

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width