[Release]xTMx's MPGH Spammer Code
This is for Visual Basics. I'm not going to give the project, just code. Figure how to use it. (2008/2010 editions)
[PHP]Public Class Form1
Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vkey As Long) As Integer
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
If GetAsyncKeyState(Keys.F2) Then
Timer2.Start()
End If
If GetAsyncKeyState(Keys.F3) Then
Timer2.Stop()
End If
End Sub
Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
SendKeys.Send(TextBox1.Text)
SendKeys.Send("{ENTER}")
SendKeys.Send("{ENTER}")
SendKeys.Send(TextBox2.Text)
SendKeys.Send("{ENTER}")
SendKeys.Send("{ENTER}")
SendKeys.Send(TextBox3.Text)
SendKeys.Send("{ENTER}")
SendKeys.Send("{ENTER}")
End Sub
Private Sub LinkLabel1_LinkClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs ) Handles LinkLabel1.LinkClicked
Process.Start("http://mpgh.net/")
End Sub
End Class
[/PHP]