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
Was this tutorial usefull?

No votes
Oh Yea!
No votes
Yes
100%
Kinda
1
No votes
Not Really
No votes
No
No votes
Not even close!!!

Total votes: 1

Contributors
User avatar
dradra43
New Member
New Member
Posts: 13
Joined: Sat Nov 06, 2010 9:56 pm

How to make a messager spammer
dradra43
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:
  • 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 coding
Direct quote by CodeNStuff
Last edited by dradra43 on Sun Dec 05, 2010 7:59 am, edited 2 times in total.
Image
Image
Image
~VB CODER~
User avatar
shekoasinger
New Member
New Member
Posts: 23
Joined: Sat Dec 04, 2010 9:40 pm

WEll done, a bit old tutorial but might be usefull for some ppl. Btw u call it an autotalker, not messager spammer ;) blusho;
User avatar
dradra43
New Member
New Member
Posts: 13
Joined: Sat Nov 06, 2010 9:56 pm

Re: How to make a messager spammer
dradra43
Ya... I know its old, but I still LOVE to use it... and thanks for the nice comment
Image
Image
Image
~VB CODER~
User avatar
Usman55
VIP - Site Partner
VIP - Site Partner
Posts: 2821
Joined: Thu Dec 24, 2009 7:52 pm

Re: How to make a messager spammer
Usman55
Simple but useful tutorial!
Image
4 posts Page 1 of 1
Return to “Tutorials”