Help make auto clicker

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jjkk
    New Member
    • Dec 2007
    • 1

    Help make auto clicker

    I took a course in visual basics a couple of years ago on very basic material, but I don't remember any of it. I'm just wondering if anyone can post the script for a program that will auto-click around 1000 times per second.

    thanks
  • Dököll
    Recognized Expert Top Contributor
    • Nov 2006
    • 2379

    #2
    Originally posted by jjkk
    I took a course in visual basics a couple of years ago on very basic material, but I don't remember any of it. I'm just wondering if anyone can post the script for a program that will auto-click around 1000 times per second.

    thanks
    Hello, jjkk!

    Can you provide some background on what you are trying to achieve?

    You can set up a timer perhaps, but it also sounds like a lot of mathematics to me. Are you able to a pseudocode? Anything you can to help gear it in the right direction.

    Also, if you previously searched this forum and nothing found, you might want to try Google to see if your question has been answered. You never know;-)

    If I see anything, I'll let you know; still stay tuned for better help, I haven't got clue just yet how this can be handled.

    In a bit...

    Comment

    • larcos
      New Member
      • Jan 2008
      • 1

      #3
      You can also see www.autoclicks. net
      a good software

      Comment

      • Ali Rizwan
        Banned
        Contributor
        • Aug 2007
        • 931

        #4
        Originally posted by jjkk
        I took a course in visual basics a couple of years ago on very basic material, but I don't remember any of it. I'm just wondering if anyone can post the script for a program that will auto-click around 1000 times per second.

        thanks
        Use timer control.
        Add all code under timer interval event and set timers interval property to 1.
        Now you will execute that code 1000 times per second.
        OR
        Add all code under a button's click event and write this code in timer

        command1_click

        Regards
        >> ALI <<

        Comment

        • daniel aristidou
          Contributor
          • Aug 2007
          • 494

          #5
          What do you want a clicker for??

          Comment

          • Killer42
            Recognized Expert Expert
            • Oct 2006
            • 8429

            #6
            Originally posted by Ali Rizwan
            ...Now you will execute that code 1000 times per second...
            Only approximately, of course. The timer control is not that accurate. For better precision you may need to use the system "tick count" or something. On the other hand, if by "auto clicking" you mean issuing mouse clicks, I doubt you'll get it to happen as fast as 1000 per second.

            Comment

            • Robbie
              New Member
              • Mar 2007
              • 180

              #7
              Originally posted by Killer42
              Only approximately, of course. The timer control is not that accurate. For better precision you may need to use the system "tick count" or something. On the other hand, if by "auto clicking" you mean issuing mouse clicks, I doubt you'll get it to happen as fast as 1000 per second.
              Out of the 3 computers I've tested the Timer on (different combinations of Windows XP, Vista, Intel and AMD processors), they are always accurate to exactly 15 mS.

              As for actually issuing the mouse clicks, I'm sorry - I can't help. I only know how to position the mouse cursor on the screen, not simulate clicks. It would be useful for me too, to know this (and for people interested why - it's just for 'visual novel' style games which lack a SKIP feature).

              I have a DLL capable of doing this, as well as simulating drag-and-drops, but it does not work in VB6. It's due to the way VB6 needs the functions implemented... or something?? As you can tell, I don't really have much knowledge with DLLs. I could ask the creator of the DLL for permission to post it here though, in case someone into DLL-modifying could find it useful? Or would it be too hard to understand becaus it's compiled?
              =/

              I just made the most time-wasting post ever. >_<

              Comment

              • Killer42
                Recognized Expert Expert
                • Oct 2006
                • 8429

                #8
                Originally posted by Robbie
                Out of the 3 computers I've tested the Timer on (different combinations of Windows XP, Vista, Intel and AMD processors), they are always accurate to exactly 15 mS.
                Excellent! Probably my info is a few years old.

                Comment

                • daniel aristidou
                  Contributor
                  • Aug 2007
                  • 494

                  #9
                  I made an auto clicker ....

                  Comment

                  Working...