Login Register






Tutorial Noob Friendly Spam Bot filter_list
Author
Message
Noob Friendly Spam Bot #1
Run Visual Basic 2008 or 2010 and create a new windows forms application. Add 2 buttons, 1 timer, and 1 richtextbox. Name one button 'Start' and the other 'Stop'. Double click the timer and add this code -
Code:
Code:
[SIZE=13px][FONT=Verdana][COLOR=#333333]Sendkeys.Send(RichTextBox1.Text)[/COLOR][/FONT][/SIZE] [SIZE=13px][FONT=Verdana][COLOR=#333333]Sendkeys.Send("{enter}") [/COLOR][/FONT][/SIZE]
Once you've done that double click the 'Start' button and add this code
Code:
Code:
timer1.enabled = True now double click the 'Stop' button and add this code -
Code:
Code:
timer1.enabled = False
You're done! You can use this to spam pretty much anything(I recommend Omegle). Enjoy!!

Reply

RE: Noob Friendly Spam Bot #2
Whenever I posted a tutorial of this I got bitched at. lol

It's still helpful for new programmers, thanks for sharing.

Reply

RE: Noob Friendly Spam Bot #3
You could also setup something like an interval because I think this bot just spams the shit out of everyone.

Anyway, good tutorial should be good for the people getting into programming!
[Image: bAMEI93.jpg]


Jabber: charon@exploit.im

Reply

RE: Noob Friendly Spam Bot #4
Awesome tutorial, man!

You should do more. <:
[Image: tenor.gif]

🍫  🍬 🎀

Reply

RE: Noob Friendly Spam Bot #5
(05-16-2013, 06:12 AM)Chantelle Wrote: Does this work in the newest version of Visual Studio?


Any way to set the interval? I used it in omegle and it was out of control and kicked me off of the server Smile

make a text box that is named something like interv4l (interv4l.Text) and then add to the button:
timer1.Interval = interv4l.Text
I believe that's how you do it. or you can click on the timer object and set the interval from the right sidebar.

Reply

RE: Noob Friendly Spam Bot #6
(05-16-2013, 06:29 AM)Chantelle Wrote: The interval in the sidebar is 100. Is that 1 sec? I tried changing it to 600, for example, and it said it was invalid while 'debugging'. What gives?

Yes, 100 = 1 sec. It's in miliseconds. As for it saying there is an error, did you change anything else?

Reply

RE: Noob Friendly Spam Bot #7
(05-16-2013, 07:51 AM)Chantelle Wrote: Aha I fixed it now, it said it cant be changed while building or debugging. I had the app running. Thanx!

Np. I do that a lot myself when using VB, I never actually sat down and learned it, just looked up bits of source code and learned how to do what I wanted to do, so I've had to figure everything out on my own pretty much.

Reply