Ok let me start off by saying I could have gone way more advanced but I didn't want to, the more advanced the more bugs I need to fix. I am amonkeyz a trusted user not some random lurker with 6 posts.
Well I don't even use a spammer but I think I got about all the bugs out of this. This is kinda old but I haven't released it on GzP yet.
I completely coded myself except the code to make it movable since it has no border style.
Download: G4Spam v1.5 - [Only registered and activated users can see links. ]
Virus Scan 0/41: [Only registered and activated users can see links. ]
Picture:Note to Vista users: The "X" button is cut off on vista still works so I'm not fixing.
[Only registered and activated users can see links. ]
Picture was taken in Windows classic style I forgot to turn on Media center edition.
Includes:
Minimize button - Minimizes program.
X / Close button - Exits the program.
Start button - Starts the spammer.
Stop button - Stops the Spammer.
Set - Set you're own custom speed.
Help button - Tells you how to set you're speed.
Test button - Pops up an empty TextBox you can test the spammer in.
Clear message - Clears the current message.
HotKeys - tells you what Hotkeys you can use.
Always on top - Makes the spammer above all other windows.
Status - Shows if the timer is on or off. (I couldn't find a good color for "Stopped" so they're both white.
Time - Shows current time.
Exit- Exits the program.
Options:
Opacity - Custom set the transparency of the program.
Clear - Clear the current message.
Test - Pops up an empty TextBox you can test the spammer in.
About - Brings up an about me page, shows who it was made by and current version. I forgot to update it to 1.5.5.7 so it says 1.5.4.5.
Start - It becomes "Stop" when the spammers on, it turns the spammer on and off.
Exit - Exits the program.
Although it doesn't look like it a lot of code went into this so if you try and say something bad about be sure to be able to back it up.
I made this in 2 days because the other forum site I go on won't let you edit a post after 48 hours.
Video:
[ame="http://www.youtube.com/watch?v=2WKUpdGPt98"]YouTube - Chat spammer v1.5[/ame]
How to use Hotkeys: You will need 2 timers for this. This works for all timers, not just ones used for spamming.
Put this code at the top of the form:
Code:
Under Timer1.Tick put this: (This is the basic code for all spammers you don't have to use) (You need a TextBox for this)Code:Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vkey As Long) As Integer
Code:
Then under Timer2.Tick put this:Code:SendKeys.Send(Me.TextBox1.Text) SendKeys.Send("{ENTER}") 'Press's Enter Key
Code:
Under Form Load put this:Code:Dim Start As Boolean Start = GetAsyncKeyState(Keys.F11) If Start = True Then Timer1.Enabled = True End If Dim Pause As Boolean Pause = GetAsyncKeyState(Keys.F12) If Pause = True Then Timer1.Enabled = False End If
Code:
How to make a basic chat spammer:Code:Timer2.Enabled = True
You will need: 1 Timer 2 TextBox 3 Buttons.
Under Timer1.Tick put this:
Button1.ClickedCode:SendKeys.Send(Me.TextBox1.Text) SendKeys.Send("{ENTER}") 'Press's Enter Key
Button2.ClickedCode:Timer1.Enabled = True TextBox1.ReadOnly = True
Button3.ClickedCode:Timer1.Enabled = False TextBox1.ReadOnly = False
I just coded this myself sorry if there are errors.Code:Timer1.Interval = (Me.TextBox2.Text)



LinkBack URL
About LinkBacks
Reply With Quote





Bookmarks