How to make a messager spammer
Heres your chance to share your own tutorials with the community. Just post them on here. If your lucky they may even be posted on the main site.
4 posts
Page 1 of 1
Level = ☆☆☆☆☆\★★★★★ *EASIEST*
Hello, and welcome to my 2nd tutorial wahooo;, today I will show you how to make a spammer.
First create a new project, name it what ever you want.
In form1 put:
Dont worry about changing text's, names, or anything because it doesnt matter. Just put Button1 BEFORE button2. Well lets move to text
Hello, and welcome to my 2nd tutorial wahooo;, today I will show you how to make a spammer.
First create a new project, name it what ever you want.
In form1 put:
- RichTextBox1
Timer1
Button 1
Button 2
Dont worry about changing text's, names, or anything because it doesnt matter. Just put Button1 BEFORE button2. Well lets move to text
Code: Select all
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Timer1.Start()
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
SendKeys.Send(RichTextBox1.Text)
SendKeys.Send("{ENTER}")
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Timer1.Stop()
End Sub
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Button1.Text = "Start"
Button2.Text = "Stop"
Timer1.Interval = "1000"
End Sub
End Class
happy codingDirect quote by CodeNStuff
Last edited by dradra43 on Sun Dec 05, 2010 7:59 am, edited 2 times in total.
WEll done, a bit old tutorial but might be usefull for some ppl. Btw u call it an autotalker, not messager spammer ;) blusho;
Ya... I know its old, but I still LOVE to use it... and thanks for the nice comment
4 posts
Page 1 of 1
Copyright Information
Copyright © Codenstuff.com 2020 - 2023