Results 1 to 2 of 2
  1. #1
    groso5's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0

    Talking I need help with a Spam Bot (Spammer)

    I was making a spammer for my friend's private silkroad server...well what ever
    My Proplem is that i want the text boxes to get spammed in order
    ex. when the first textbox is written it auto clicks enter then writes the second textbox and enter and so on
    I belive that the proplem is in the timer.
    Code:
        Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
            If CheckBox1.Checked = True Then
                SendKeys.Send(TextBox1.Text)
                SendKeys.Send("{Enter}")
            End If
            If CheckBox2.Checked = True Then
                SendKeys.Send(TextBox2.Text)
                SendKeys.Send("{Enter}")
            End If
            If CheckBox3.Checked = True Then
                SendKeys.Send(TextBox3.Text)
                SendKeys.Send("{Enter}")
            End If
            If CheckBox4.Checked = True Then
                SendKeys.Send(TextBox4.Text)
                SendKeys.Send("{Enter}")
            End If
        End Sub

  2. #2
    Nexero's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    My VB Project
    Posts
    2,530
    Reputation
    90
    Thanks
    4,801
    My Mood
    Bored
    I was see this not easy too so i made invisible label and used it to make 8 TextBoxs for my spammer in some billiard site
    any ways
    Timer :
    Code:
    Sendkeys.send(textbox1.text) ' first it will start text box without ''If'' System
    sendkeys.send"{enter}"
    Label1.text "1" 'We finish thing
    If Label1.Text = "1" Then
    Sendkeys.send(textbox2.text) ' see.. we will use the label for make multi spammer [more than 1 textbox] ;)
    Sendkeys.send"{enter}"
    Label1.text = "2"
    If Label1.Text = "1" Then
    Sendkeys.send(textbox2.text
    Sendkeys.send"{enter}"
    Label1.text = "3"
    You can make many text boxs as you need

Similar Threads

  1. [Help] [ Le Bot 6.7 ] Need help with Shop Lists / Bot Manager
    By craigjr132 in forum Adventure Quest Worlds (AQW) Hacks / Cheats / Trainers
    Replies: 4
    Last Post: 04-04-2013, 03:58 AM
  2. [Help] need help with a fish bot
    By israe in forum Metin 2 Hacks
    Replies: 0
    Last Post: 10-04-2011, 10:02 PM
  3. I need help with Maplestory Bots/Hacks/Trainers.
    By flegi in forum MapleStory Help
    Replies: 6
    Last Post: 06-20-2011, 12:49 AM
  4. need help with smart bots
    By Mister Krister in forum Call of Duty Modern Warfare 2 Help
    Replies: 2
    Last Post: 11-08-2010, 10:26 AM
  5. Need Help With Bots
    By Swifstiee in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 0
    Last Post: 09-05-2010, 01:36 AM