
Fire_Of_Hell
Newbie
Mar 10, 2006, 9:14 PM
Post #2 of 2
(401 views)
Shortcut
|
|
Re: [Iluvata] {HELP}Auto Spammer{HELP}
[In reply to]
|
Can't Post
|
|
lol, i have made heaps of auto spammers and talkers over how many days? well anyways, what i understand is you want to know how to make the textbox with what to say and what the interval is. public function Txtselector as string TxtSelector = textbox1.text end function Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick If Timer1.Enabled = True Then SendKeys.Send(txtselector) SendKeys.Send("{enter}") End If timer1.interval = textbox2.text * 1000 end sub Private Sub BtnStart_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnStart.Click Timer1.Enabled = True End Sub Private Sub BtnStop_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnStop.Click Timer1.Enabled = False End Sub There you go
|