![]() |
How to make a basic auto spammer. - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Visual Basic & .NET Framework (https://sinister.ly/Forum-Visual-Basic-NET-Framework) +--- Thread: How to make a basic auto spammer. (/Thread-How-to-make-a-basic-auto-spammer) |
How to make a basic auto spammer. - Trollation - 09-12-2013 Hey guys well this is my first tutorial on here and maybe the pros out here are gonna hate on this thread because it is so simple but this is for the beginners so enjoy ![]() ![]() Hey guys welcome to my first tutorial in this section this tutorial is for beginners on how to make a basic Auto Spammer. •Table of Contents requirements •Spammer design •The coding part •End. Requirements The Requirements are. •VB.NET •a computer/pc •Brain Spammer Design! Okay guys we are going to begin with the Spammer Design first open VB.NET>New project>Windows Forms Application. okay now we are seeing this Spoiler: you can make the size as long as you want, now things what we need. 1 Text Box 3 Timers 4 Buttons 1 group box(Dont need to but it looks better. now you can place these thing where ever you want I have it like this. (Change the buttons to stop slow fast medium) and groupbox to spammer (if you used the groupbox.) Spoiler: The Coding Part!
Okay now we are by the coding part.
Dubbel click on button 'stop' and add this code. Code: Timer1.Enabled=False Spoiler: Okay now Dubbel click on "slow" and type Code: timer1.Enabled = True so it will look like this Spoiler: okay now dubbel click on fast and add this code Code: Timer3.Enabled = true should look like this Spoiler: now go back to the form and click on Timer1 and click on properties and change that to 7000 (7000ms=7sec) Now dubbel click on Timer1 and add Code: SendKeys.Send(TextBox1.Text) it will look like this Spoiler: now click on Timer2>properties and change it to 3000(3000ms=3sec) and add this code again. Code: SendKeys.Send(TextBox1.Text) Spoiler: now click on Timer3 and change it to 1000(1000ms=1sec) Now Dubbel click on Timer3 and add this code again. Code: SendKeys.Send(TextBox1.Text) it will look like this Spoiler: and our final code would be! Spoiler: THE END Hope you guys learned something today and please dont copy and paste the code just write it yourself you will learn much more from it. Bye guys and maybe I see you next time in other tutorials ![]() (I posted this thread before on another forums so you maybe already seen this one.) RE: How to make a basic auto spammer. - hellomen - 09-12-2013 Use the timer interval!! Slow: timer1.interval = 1000 Fast timer1.interval= 500 Faster 100 Fastest 10 RE: How to make a basic auto spammer. - ArkPhaze - 09-14-2013 The 'hate' won't come from the fact that it's a beginners tutorial, but have you even used the search function!? This has been posted before many times. No more spammer tutorials... These things are useless anyways. RE: How to make a basic auto spammer. - iNanox - 10-28-2013 good tut for begginers ![]() RE: How to make a basic auto spammer. - iNanox - 10-28-2013 good tut for begginers ![]() RE: How to make a basic auto spammer. - iNanox - 10-28-2013 good tut for begginers ![]() RE: How to make a basic auto spammer. - iNanox - 10-28-2013 good tut for begginers ![]() |