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
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
Originally Posted by RoPMadM
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