Results 1 to 3 of 3
  1. #1
    njwknvjwbjnfi3ff's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0

    How do you make timed Visualbasic auto typer

    I was wondering how do you make a Visualbasic auto typer which is timed to type a custom text every lets say 8 minutes a timer that you can customize, I want to use something like this on twitch

  2. #2
    RoPMadM's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Location
    __asm
    Posts
    226
    Reputation
    12
    Thanks
    251
    My Mood
    Cynical
    You could use a timer with 480.000 ms
    480.000 beacuse: 8min. x 60sec. x 1000 = 480.000

    Or a while loop.

    Code:
    While 1 > 0
    'SendKeys
    sleep(480.000)
    End While

  3. #3
    illusionisten's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    2
    My Mood
    Tired
    Quote Originally Posted by RoPMadM View Post
    You could use a timer with 480.000 ms
    480.000 beacuse: 8min. x 60sec. x 1000 = 480.000

    Or a while loop.

    Code:
    While 1 > 0
    'SendKeys
    sleep(480.000)
    End While
    And for god sake add a bool so you can toggle it off and on.
    Code:
    Dim AutoTyper_Enabled As Boolean
    
    While (AutoTyper_Enabled)
    'SendKeys
    sleep(480.000)
    End While

Similar Threads

  1. [Help] How do you make a timed shutdown?
    By PixyStyx in forum Visual Basic Programming
    Replies: 8
    Last Post: 05-08-2011, 07:22 PM
  2. How do you make warrock hacks??
    By araz in forum WarRock - International Hacks
    Replies: 13
    Last Post: 12-17-2007, 11:23 AM
  3. how do you make a trainer and or bypass??
    By 123456789987654321 in forum WarRock - International Hacks
    Replies: 11
    Last Post: 06-04-2007, 12:00 PM
  4. What Are Boxes And How Do You Make Stand Alone Trainers?
    By condor01 in forum WarRock - International Hacks
    Replies: 2
    Last Post: 04-19-2007, 02:17 AM
  5. How'd you make these?
    By Twisty in forum Art & Graphic Design
    Replies: 1
    Last Post: 03-13-2007, 03:27 AM