Ok i have an autospammer, and it doesnt wanna do what i want it to do. it either continues to send, or it freakin shows the message box continuosly...

VB Code:
  1. MsgBox("You have approx 2.5 seconds till we start spamming. HURRY!")
  2.         Wait(2500, 100)
  3.         Dim i As Integer
  4.         Dim y As Integer
  5.         Dim n As Integer
  6.         Dim txt As String
  7.         Dim x As Integer
  8.         txt = TextBox1.Text
  9.         n = Int(TextBox2.Text)
  10.         x = Int(TextBox3.Text)
  11.         While y <= n
  12.             i = i + 1
  13.             System.Windows.Forms.SendKeys.Send(txt)
  14.             Wait(500, 100)
  15.             System.Windows.Forms.SendKeys.Send(Chr(13))
  16.             Wait(x, 250)
  17.         End While
  18.     End Sub