
terrankiller
Veteran

Oct 10, 2005, 3:56 AM
Post #1 of 7
(2940 views)
Shortcut
|
|
Fagex Auto Typer Source (VB)
|
Can't Post
|
|
I made this awhile ago, I forgot when. You can look at my unorganiziness =p. Some [Expletive Deleted] is simple, some other stuff might teach you a few things. <Link no longer exists> Examples: I used a timer to make the label text to change color, simple: Code: Private Sub Timer3_Timer() Randomize Label2.ForeColor = Int(Rnd * 300000) End Sub Some code to make the autotyper send keys humanlike: Code: strText = effects.Text + txtspam.Text intNumChars = 1 intStartingFrom = intStartingFrom + 1 Var1 = Mid$(strText, intStartingFrom, intNumChars) Overall it was a quick job to make this, hope you learn something.
(This post was edited by terrankiller on Nov 7, 2005, 6:15 AM)
|