Post: [VB.NET] How to make a spam bot
08-22-2011, 09:41 PM #1
KyleWTF
Climbing up the ladder
(adsbygoogle = window.adsbygoogle || []).push({}); Alright, first off create a new windows form/project.

Then add in 2 buttons, as well as a a text boxes, and a timer.


On the timer add this code

' TextBox1.Text is what text it is going to send
    
SendKeys.Send(TextBox1.Text)
SendKeys.Send("{Enter}")



Call the button1 ("start")

and

Button 2 ("stop")



On the button1/start button add this code

     Timer1.Start



On the button2/stop button add this code

     timer1.Stop 




Adjust the speed of timer1 to your liking

You must login or register to view this content.

Uh, I typed this my self, I'll make it more well written in the future. Thank you..
(adsbygoogle = window.adsbygoogle || []).push({});

The following user groaned KyleWTF for this awful post:

Epic?
09-04-2011, 12:21 PM #11
Woof
...hmm
C# version.

    public void spam(int time, string text)
{
int Badman = 0;
while(Badman != time)
{
SendKeys.Send(text);
SendKeys.Send("{Enter}");
Badman++;
}
}
09-04-2011, 12:26 PM #12
Holleeder
Satadurah
very very simple.
09-04-2011, 02:04 PM #13
Corpse
Keeper
Originally posted by Bree
Alright, first off create a new windows form/project.

Then add in 2 buttons, as well as a a text boxes, and a timer.


On the timer add this code

' TextBox1.Text is what text it is going to send
    
SendKeys.Send(TextBox1.Text)
SendKeys.Send("{Enter}")



Call the button1 ("start")

and

Button 2 ("stop")



On the button1/start button add this code

     Timer1.Start



On the button2/stop button add this code

     timer1.Stop 




Adjust the speed of timer1 to your liking

You must login or register to view this content.

Uh, I typed this my self, I'll make it more well written in the future. Thank you..


VB.NET is shit. Use C++.
09-04-2011, 03:41 PM #14
fill0botto95
You talkin to me?
Originally posted by Sublimity View Post
Lol, this is extremely basic and horrible in my opinion....


i think he saw it on youtube, fell in love for it and he felt to write it here <3
09-04-2011, 06:11 PM #15
Pichu
RIP PICHU.
Originally posted by fill0botto95 View Post
i think he saw it on youtube, fell in love for it and he felt to write it here <3


Ahh, how fun YouTube is. Smile

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo