Simple Spammer

Posts 19 of 9 · Page 1 of 1
Simple Spammer


Required Software:
Microsoft Visual Studio 2010 (Only If you wish to use the source Provided via rar.)

Required Items:
Window Form (Only 1 Form.)
7 Text-boxes
3 Buttons

Preview:
Code:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace Simple_Spammer
{
    public partial class Simple_Spammer : Form
    {
        public Simple_Spammer()
        {
            InitializeComponent();
        }

        private void Simple_Spammer_Load(object sender, EventArgs e)
        {
            MessageBox.Show("Simple Spammer by Dev_Pump");
            Stop_Spam_B.Enabled = false;
            Dev_Pump.Text = "Made By Dev_Pump";
        }

        private void Start_Spam_B_Click(object sender, EventArgs e)
        {
            Spam_Line_1.Enabled = false;
            Spam_Line_2.Enabled = false;
            Spam_Line_3.Enabled = false;
            Spam_Line_4.Enabled = false;
            Start_Spam_Timer.Enabled = true;
            Start_Spam_B.Enabled = false;
            Stop_Spam_B.Enabled = true;
        }

        private void Stop_Spam_B_Click(object sender, EventArgs e)
        {
            Start_Spam_Timer.Enabled = false;
            Spam_Line_1.Enabled = true;
            Spam_Line_2.Enabled = true;
            Spam_Line_3.Enabled = true;
            Spam_Line_4.Enabled = true;
            Start_Spam_B.Enabled = true;
        }

        private void Set_Interval_Click(object sender, EventArgs e)
        {
            if (Timer_Interval.Text.Length == 0)
            {
                MessageBox.Show("Error! Unable to use 0!");
            }
            else
            {
                if (Timer_Interval.Text == "0")
                {
                    MessageBox.Show("You may not use zero");
                }
                else
                {
                    int interval;
                    interval = int.Parse(Timer_Interval.Text);
                    Start_Spam_Timer.Interval = interval;
                }
            }
        }

        private void Start_Spam_Timer_Tick(object sender, EventArgs e)
        {
            SendKeys.Send(Spam_Line_1.Text);
            SendKeys.Send("{Enter}");
            SendKeys.Send(Spam_Line_2.Text);
            SendKeys.Send("{Enter}");
            SendKeys.Send(Spam_Line_3.Text);
            SendKeys.Send("{Enter}");
            SendKeys.Send(Spam_Line_4.Text);
            SendKeys.Send("{Enter}");
        }

        private void Dev_Pump_Click(object sender, EventArgs e)
        {
            MessageBox.Show("No Clicking my Textbox, now you are restricted from editing it.");
            Dev_Pump.Text = "Made By Dev_Pump";
            Dev_Pump.Enabled = false;
        }

        private void Dev_Pump_TextChanged(object sender, EventArgs e)
        {
            MessageBox.Show("No Clicking my Textbox, now you are restricted from editing it.");
            Dev_Pump.Text = "Made By Dev_Pump";
            Dev_Pump.Enabled = false;
        }

        private void Version_Click(object sender, EventArgs e)
        {
            MessageBox.Show("No Clicking my version Textbox, now you are restricted from editing it.");
            Version.Text = "1.0";
            Version.Enabled = false;
        }

        private void Version_TextChanged(object sender, EventArgs e)
        {
            MessageBox.Show("No Clicking my version Textbox, now you are restricted from editing it.");
            Version.Text = "1.0";
            Version.Enabled = false;
        }
    }
}
Attachment Included
Virus Total Scan For Source Code
Simple_Spammer.rarattachment deleted · 36 downloads before removal
_____________Accidental comment
You can also use SendMessage/PostMessage this way the window doesn't have to be foreground.

Ohai there zeco.
Using a listbox would be better then those 4 textbox's, also you should check if the textbox has text, otherwise in some programs/games it might send an empty line.

Oh and at required software you should leave in there the framework version ^^
Quote Originally Posted by 'Bruno View Post
Using a listbox would be better then those 4 textbox's, also you should check if the textbox has text, otherwise in some programs/games it might send an empty line.

Oh and at required software you should leave in there the framework version ^^
I would have wrote a few if commands, but I was to lazy to do it. The Only TextBox/Button that has a empty "IF" is the "Set Intervals".
if you use sendkeys dont you miss a enter on front to open a textbox screen or is this for blogs/runescape?
Quote Originally Posted by Kuro Tenshi View Post
if you use sendkeys dont you miss a enter on front to open a textbox screen or is this for blogs/runescape?
The Program does as followed:
Line 1
{Enter}
Line 2
{Enter}
Line 3
{Enter}
Line 4
{Enter}

The Program shouldn't spam its self, it will only start once you place it on something that will accept typing
Quote Originally Posted by Dev_Pump View Post
The Program does as followed:
Line 1
{Enter}
Line 2
{Enter}
Line 3
{Enter}
Line 4
{Enter}

The Program shouldn't spam its self, it will only start once you place it on something that will accept typing
ehm i mean it like this:

ingame:
{enter}

//textbox appears

{tb1.text}

{enter}

//textbox appears disappears.

thats all i meant
Quote Originally Posted by Kuro Tenshi View Post
ehm i mean it like this:

ingame:
{enter}

//textbox appears

{tb1.text}

{enter}

//textbox appears disappears.

thats all i meant
Well, on that fact.

Lets just say the interval is 5000 (5 Seconds).
every 5 seconds it sends textbox 1 >> textbox 2 >> textbox 3 >> textbox 4

if you come back ingame it would either start with TB1 or somewhere from 2-4.

Is that clear?
Posts 19 of 9 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?