Post: Adanced Spammer On VB
07-17-2011, 07:21 PM #1
(adsbygoogle = window.adsbygoogle || []).push({}); Okay i am going to show you how to make a spammer or so called "Advanced Spammer", With Hotkeys


Items you will need:
-Textbox1 (set it to multi-line)
-NumericUpDown1
-Timer1
-Timer2

STEP 1
Under Public Class Form 1 add this code:

    Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vkey As Long) As Integer


What this does is Allows you to use HotKeys.

STEP 2
Select Timer1 and rename it to "Hotkeys" in the Properties
Next to Enabled choose "True"
Next to Interval type "1"
Double click on the timer and add this code:

Code:
    Dim Hotkey1 As Boolean
Dim Hotkey2 As Boolean
Hotkey1 = GetAsyncKeyState(Keys.F1)
Hotkey2 = GetAsyncKeyState(Keys.F2)
If Hotkey1 = True Then
Spammer.Enabled = True
End If
If Hotkey2 = True Then
Spammer.Enabled = False
End If


This will check for when you press F1 or F2 to turn on and off the spammer.

STEP 3
Select Timer2 and rename it to "Spammer" in the properties.
Make Sure next to Enabled it says "False"
Next to Interval type "1000"
Double click on the Timer and put this code:

    My.Computer.Keyboard.SendKeys(TextBox1.Text)
My.Computer.Keyboard.SendKeys("{Enter}")


This will start spamming the message you have typed and press enter after its types your message.

STEP 4
Double click on NumericUpDown1 and put this code:

Code:
    Spammer.Interval = 1000 / NumericUpDown1.Value


What this does is whenever you set the number higher the faster the speed goes on the timer. It may not seem like this is faster but once you try it you will indeed find out that this is faster than an ordinary spammer by far. When you have the spammer at "0" it will go slow but if you have the spammer at "100" it will be Tremendously fast.

STEP 5
Add anything extra to the project as you wish such as extra labels or whatever.


Hope this helps you guys

Btw... DO NOT USE ON MSN WITH SPEED AT 100!!! You will be sending them messages even if you stopped for a minute or so. Also you will lagg like hell!
Last edited by AngryHD ; 07-17-2011 at 07:36 PM.

The following 2 users say thank you to AngryHD for this useful post:

CodingNation, oO-GKUSH-Oo
07-17-2011, 08:41 PM #2
oO-GKUSH-Oo
< ^ > < ^ >
I did everything you said and i get this
You must login or register to view this content.
its not edited but isnt their suppose to be another button?

The following user thanked oO-GKUSH-Oo for this useful post:

AngryHD
07-17-2011, 08:47 PM #3
no? coz F1 and F2 turns it on / off
07-17-2011, 08:49 PM #4
oO-GKUSH-Oo
< ^ > < ^ >
Ok so i think im just using it wrong. Ill find out though
07-17-2011, 09:38 PM #5
Pichu
RIP PICHU.
Nice. I made a Advance Auto Clicker + Text Spammer (Personal Use) about 3 weeks ago. May release it all, although I was thinking about giving it a nice GUI.

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo