Results 1 to 6 of 6
  1. #1
    dragonattak's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Italy,Rome.. Post:141732
    Posts
    704
    Reputation
    -19
    Thanks
    411
    My Mood
    Devilish

    Multi-Line Spammer Tutorial + Source code and project

    What do you need?
    • 5 Textbox
    • 5 Checkbox near the textbox for active each textbox
    • 1 Button for start the spammer
    • Another checkbox called PressEnter for enable the enter key every text to spam
    • 1 numericupdown
    • 3 timer, one called Verify, one Spam and one HotKey

    How do?
    Write under the "Public Class Form1"
    Code:
        Public Verifica As Boolean = True
        Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vkey As Long) As Integer
    Set the interval of the Verify timer to 500
    After write
    Code:
    If CheckBox1.Checked Then
            Else
                CheckBox1.Checked = True
            End If
            Spam.Interval = NumericUpDown1.Value
    Then click on the button1 and write
    Code:
      If Verifica = False Then
                Button1.Text = "Start"
                Verifica = True
                Spam.Stop()
            ElseIf Verifica = True Then
                Button1.Text = "Stop"
                Verifica = False
                Threading.Thread.Sleep("2000")
                Spam.Start()
            End If
    Now click on the "Spam" timer and write
    Code:
      SendKeys.Send(TextBox1.Text)
            If PressEnter.Checked Then
                SendKeys.Send("{ENTER}")
            End If
            If CheckBox2.Checked Then
                SendKeys.Send(TextBox2.Text)
                If PressEnter.Checked Then
                    SendKeys.Send("{ENTER}")
                End If
            ElseIf CheckBox3.Checked Then
                SendKeys.Send(TextBox3.Text)
                If PressEnter.Checked Then
                    SendKeys.Send("{ENTER}")
                End If
            ElseIf CheckBox4.Checked Then
                SendKeys.Send(TextBox4.Text)
                If PressEnter.Checked Then
                    SendKeys.Send("{ENTER}")
                End If
            ElseIf CheckBox5.Checked Then
                SendKeys.Send(TextBox5.Text)
                If PressEnter.Checked Then
                    SendKeys.Send("{ENTER}")
                End If
            End If
    Then click on the form and write
    Code:
       
    msgbox ("Coded by Dragonattak")
    Verify.Start()
            HotKey.Start()
    After click on the HotKey timer and write
    Code:
    If GetAsyncKeyState(Keys.F10) Then
                If Verifica = False Then
                    Button1.Text = "Start"
                    Verifica = True
                    Spam.Stop()
                ElseIf Verifica = True Then
                    Button1.Text = "Stop"
                    Verifica = False
                    Threading.Thread.Sleep("2000")
                    Spam.Start()
                End If
            End If
    And after debug your project
    Full source:
    Code:
    Public Class Form1
        Public Verifica As Boolean = True
        Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vkey As Long) As Integer
        Private Sub Checked_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Verify.Tick
            If CheckBox1.Checked Then
            Else
                CheckBox1.Checked = True
            End If
            Spam.Interval = NumericUpDown1.Value
        End Sub
    
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            If Verifica = False Then
                Button1.Text = "Start"
                Verifica = True
                Spam.Stop()
            ElseIf Verifica = True Then
                Button1.Text = "Stop"
                Verifica = False
                Threading.Thread.Sleep("2000")
                Spam.Start()
            End If
        End Sub
    
        Private Sub Spam_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Spam.Tick
            SendKeys.Send(TextBox1.Text)
            If PressEnter.Checked Then
                SendKeys.Send("{ENTER}")
            End If
            If CheckBox2.Checked Then
                SendKeys.Send(TextBox2.Text)
                If PressEnter.Checked Then
                    SendKeys.Send("{ENTER}")
                End If
            ElseIf CheckBox3.Checked Then
                SendKeys.Send(TextBox3.Text)
                If PressEnter.Checked Then
                    SendKeys.Send("{ENTER}")
                End If
            ElseIf CheckBox4.Checked Then
                SendKeys.Send(TextBox4.Text)
                If PressEnter.Checked Then
                    SendKeys.Send("{ENTER}")
                End If
            ElseIf CheckBox5.Checked Then
                SendKeys.Send(TextBox5.Text)
                If PressEnter.Checked Then
                    SendKeys.Send("{ENTER}")
                End If
            End If
        End Sub
    
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    ("Coded by Dragonattak")        
    Verify.Start()
            HotKey.Start()
        End Sub
    
        Private Sub HotKey_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles HotKey.Tick
            If GetAsyncKeyState(Keys.F10) Then
                If Verifica = False Then
                    Button1.Text = "Start"
                    Verifica = True
                    Spam.Stop()
                ElseIf Verifica = True Then
                    Button1.Text = "Stop"
                    Verifica = False
                    Threading.Thread.Sleep("2000")
                    Spam.Start()
                End If
            End If
        End Sub
    End Class
    VirusScans for the project
    {X}{X}
    The project is below, remember to give credits to me!
    Last edited by dragonattak; 07-04-2011 at 03:04 PM.

  2. The Following 2 Users Say Thank You to dragonattak For This Useful Post:

    mido2050 (07-06-2011),RedneckRandy (03-14-2013)

  3. #2
    Ryuesi's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Right here.
    Posts
    7,339
    Reputation
    413
    Thanks
    2,397
    My Mood
    Relaxed
    Nice Tut Dragonattak





    Contributor Since 24-11-2011 ~ 26-12-2011
    VM / PM




  4. #3
    dragonattak's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Italy,Rome.. Post:141732
    Posts
    704
    Reputation
    -19
    Thanks
    411
    My Mood
    Devilish
    Quote Originally Posted by Lexical View Post
    Nice Tut Dragonattak
    Ty
    /msg2short

  5. #4
    proman98's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Achel
    Posts
    1,024
    Reputation
    47
    Thanks
    81
    My Mood
    Fine
    im gonna try it good job

  6. #5
    Cal's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    MPGH faggots.
    Posts
    5,553
    Reputation
    394
    Thanks
    825
    Repped you, good to see your doing something

  7. #6
    Ryuesi's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Right here.
    Posts
    7,339
    Reputation
    413
    Thanks
    2,397
    My Mood
    Relaxed
    Quote Originally Posted by dragonattak View Post


    Ty
    /msg2short
    No Problem





    Contributor Since 24-11-2011 ~ 26-12-2011
    VM / PM