Results 1 to 11 of 11

Thread: [Tutorial] Advanced text spammer

  1. #1
    Join Date
    Oct 2008
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default [Tutorial] Advanced text spammer

    Hello this is my first tutorial post here and I am going to teach you how to make a nice little text spammer. Basically what this does is sends what ever you type into the box into any chat, notepad, or pretty much anything that can be typed in! Lets get started.

    First off I will be using Visual Basic 2008 Express Edition for all my tutorials that I post. To get it please visit the link below, and click download on the Visual Basic 2008 Express Edition box.

    Code:
    http://www.microsoft.com/express/download/#webInstall
    Setting up the form:

    To start make a new project, and select windows forms application.


    Then place the following onto your form1, and try to make it look somewhat like this.


    The red blocks are where you place labels. The red one with nothing in it is a blank label put close to the equal sign. The first one is just telling the user what to type in the box.

    The blue blocks are buttons, named &Start, and &Stop. If you didn't know if you place & before the starting letter it will underline that letter for you.

    The yellow block is a blank textbox.

    The black block is a trackbar.


    Go to the trackbar's properties tab and make the value 1, and the maximum 1000. Here is what it should look like.





    The purple block is a tool strip. Make it have a status label with a text of Error!





    Now you need to just add two timers and your form is ready to be coded!

    After you have added the timers click them once and look to the right for their properties tab. Make the "Interval" number to 1 like is shown below.



    The coding:

    To start off double click on your Start button.

    When you click this it will take you to the "back bone" of your program, the coding section!

    The code for the Start button is very simple. I will post it below then explain it.

    Code:
                    Timer1.Enabled = True
            ToolStripStatusLabel1.Text = "On..."
    Ok this is what it all means. "Timer1.Enabled = True" starts the timer (which we will code later on) and it begins to "tick" which means it is outputting something as many times as you tell it to. ToolStripStatusLabel1.Text = "On..." means that when you click the Start button it will make it say On... at the bottom of the program just to let you know it is on.

    This is all the coding that is needed under the Start button. Go back to the form desing and double click the Stop button.

    The coding for the Stop button is very similar to the Start button so I won't explain it.

    Code:
            Timer1.Enabled = False
            ToolStripStatusLabel1.Text = "Off..."
    Next double click on timer1, it can be found a little bit below your form1 design.

    The code in this section is what "sends out" the message you want to spam.

    Code:
            SendKeys.Send(TextBox1.Text)
            SendKeys.Send("{ENTER}")
            Timer1.Interval = TrackBar1.Value
    Next you need to double click on your forms close button (the one you use to exit any program), this will bring you to the form load code section. This code runs as soon as the program is ran. It does not need explained as I have done it before.

    Code:
            Timer2.Enabled = True
            ToolStripStatusLabel1.Text = "Off..."
    The last bit of coding is the timer2 code. Double click on timer2 (next to timer1 on form design).

    Code:
            Label3.Update()
            Label3.Text = TrackBar1.Value
    This code takes the value from the track bar and displays it on the form so it shows Speed = 1, all the way up to Speed = 1000. Label3.update() updates it's text everytime it is changed.

    The conclusion:

    To get access to your program goto file, save all, and choose a folder to save all your program information in. Next look for build, click the build option that appears. After this click build then publish, select a directory and click finish. If you click next just go back because you don't need to change any more settings. Then goto

    Code:
    C:\Users\YOURUSERNAME\Documents\Visual Studio 2008\Projects\PROGRAMNAME\PROGRAMNAME\PROGRAMNAME\bin\debug\
    In this folder look for a filetype named Application and run it, this will load your program so just copy that to your desktop for easy access.





    This was my first tutorial ever so I am sorry if it is a little hard to read/understand. Please comment on it and tell me if it was useful or not, and also post any problems/questions you may have!

  2. #2
    Join Date
    Apr 2006
    Location
    Lincolnshire
    Posts
    106
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Kind of useful.

    Did you learn this in college? I took computing and we've just started learning this stuff
    ---------------------

    I joined this forum a long time ago. I leeched, I didn't really bother to properly learn SCAR and it's uses. I am sorry. I've matured, and I want to commit to a hobby I will enjoy and is worthwhile. Teach me.

  3. #3
    Join Date
    Oct 2008
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Actualy I have learned vb on my own watching tutorials and experimenting, I am still in high school.

  4. #4
    Join Date
    Jan 2008
    Location
    NC, USA.
    Posts
    4,429
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Yay, thanks man I really needed one on VB. I will post back later to display my problems (If I have Any ).
    Thanks
    Quote Originally Posted by irc
    [00:55:29] < Guest3097> I lol at how BenLand100 has become noidea
    [01:07:40] <@BenLand100> i'm not noidea i'm
    [01:07:44] -!- BenLand100 is now known as BenLand42-
    [01:07:46] <@BenLand42-> shit
    [01:07:49] -!- BenLand42- is now known as BenLand420
    [01:07:50] <@BenLand420> YEA

  5. #5
    Join Date
    Oct 2008
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Your very welcome pm me or post here with any problems and I will help ya out.

  6. #6
    Join Date
    Apr 2006
    Location
    Lincolnshire
    Posts
    106
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Cool, You picked a nice language to start off with, Fairly nice and easy, yet still good enough to actually build useful things.
    ---------------------

    I joined this forum a long time ago. I leeched, I didn't really bother to properly learn SCAR and it's uses. I am sorry. I've matured, and I want to commit to a hobby I will enjoy and is worthwhile. Teach me.

  7. #7
    Join Date
    Oct 2008
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by eddie View Post
    Cool, You picked a nice language to start off with, Fairly nice and easy, yet still good enough to actually build useful things.
    I have actauly been using vb for a few years now.

  8. #8
    Join Date
    Apr 2007
    Posts
    2,593
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Meh. This isn't very advanced =/

    If you've been using VB for a few years now, then this isn't even close to what you should be able to do.

    I made my account creator in VB. I used VB for 1 month before I made it.

  9. #9
    Join Date
    Oct 2008
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    What esle would you want it to do?

  10. #10
    Join Date
    Apr 2007
    Posts
    2,593
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Well, sorry, there's just no need to call it an Advanced Text Spammer.

    It's nothing to make it type a word then wait 6 seconds.

    Make it use multiple text boxes with customizable wait times.

  11. #11
    Join Date
    Oct 2007
    Location
    California
    Posts
    153
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Cool...nice tut
    Here is a better version of the spammer you made that i made (and its sick as hell) :

    ahh filesize too big....here's it for rapidshare:

    http://rapidshare.com/files/16649240...ammer.exe.html

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Trigonometry 101 - Tutorial on Basic Trig Concepts to Help the Advanced Scripter
    By ZephyrsFury in forum OSR Advanced Scripting Tutorials
    Replies: 19
    Last Post: 06-28-2012, 06:38 PM
  2. Popc0rn's Auto-Spammer Tutorial!
    By PoPC0rN in forum Outdated Tutorials
    Replies: 5
    Last Post: 01-16-2009, 01:28 AM
  3. Text Spammer
    By gimillii1592 in forum C#/Visual Basic Help and Tutorials
    Replies: 19
    Last Post: 11-25-2008, 11:29 PM
  4. Advanced failsafe tutorial(for noobs and leet scripters alike)
    By elementalelf in forum OSR Intermediate Scripting Tutorials
    Replies: 16
    Last Post: 11-07-2008, 02:37 PM
  5. Types + PlayerArray Tutorial
    By WhiteShadow in forum Outdated Tutorials
    Replies: 6
    Last Post: 03-05-2007, 05:53 PM

Posting Permissions

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