How To Make a Flooder

AstriMc

Member
Reputation
0
Here is how you can make a Flooder..

this works for anything kind of chat, msn what ever u use

Open Visual Studio
New windows Form..

1. Lable
1. Textbox
2. Buttons
1. timer1

Code:
Code:
Public Class Form1
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Timer1.Enabled = True
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        Timer1.Enabled = False
    End Sub

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        SendKeys.Send(TextBox1.Text)
        SendKeys.Send("{Enter}")
    End Sub
End Class

Here is how it lookes after is Done..


enjoy..

- Approved Bleepy
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…