Results 1 to 4 of 4

Thread: Debugging AutoSpammer

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Jan 2005
    Posts
    17

    Angry Debugging AutoSpammer

    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

  2. #2
    Hyperactive Member dogfish227's Avatar
    Join Date
    Oct 2002
    Location
    GA
    Posts
    409

    Re: Debugging AutoSpammer

    well you have nothing in your while loop that causes it to end.
    it ends when Y<= n but nothing in the loop causes y to become greater.

    im not to sure whats going on here either you need to make your variable names describe the purpose of the variable

  3. #3

    Thread Starter
    Junior Member
    Join Date
    Jan 2005
    Posts
    17

    Re: Debugging AutoSpammer

    that doesnt help...

  4. #4

    Thread Starter
    Junior Member
    Join Date
    Jan 2005
    Posts
    17

    Re: Debugging AutoSpammer

    never mind how dumb could i be... thanks bro peace

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width