Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Visual Basic Programming › [TUT]Make a spammer w/ hotkeys + ingame message changer + Rndm Char.

[TUT]Make a spammer w/ hotkeys + ingame message changer + Rndm Char.

Posts 1–15 of 32 · Page 1 of 3
Pixie
Pixie
[TUT]Make a spammer w/ hotkeys + ingame message changer + Rndm Char.
I really don't want to make a tutorial on this, but I have nothing to do right now, so w/e

First, when you make a new project, name it any thing you want, and add the following:

2 buttons : For manual start/stop
3 timers : 1 for hotkeys, 1 for spam, and 1 for ingame message changer
1 textbox : For the message, and for the text that is recorded

THE CHECKBOX IS NOT NEEDED!!

The textbox is like a keylogg, you can manually enter the text yourself, or if you want to change it while ingame, the the third timer will record your message when you press the hotkey.

I will have what it should look like in the attachments (image)

Here is the code to put at the top of your form (Above Form1)
Code:
Imports System.Text
Now put this below form1:
Code:
Public Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
Dim result As Integer
That's just something for the hotkeys, but if that doesn't work, then try this:
Code:
Public Declare Function GetAsyncKeyState Lib "user64" (ByVal vKey As Long) As Integer
Dim result As Integer
Now, the hotkeys:

Add this to timer1 (But make sure Timer1 is enabled!)
Code:
If GetAsyncKeyState(Keys.F11) Then
            Timer3.Enabled = True
        End If
        If GetAsyncKeyState(Keys.F6) Then
            Timer2.Enabled = True
            TextBox1.Text = ""
        End If
        If GetAsyncKeyState(Keys.F7) Then
            Timer2.Enabled = False
        End If
Now add this to Timer2
Code:
For i = 1 To 255
            result = 0
            result = GetAsyncKeyState(i)
            If result = -32767 Then
                TextBox1.Text = TextBox1.Text + Chr(i)
            End If
        Next i
And finally, timer3:
Code:
Dim min = Convert.ToInt32("a"c)
        'Change a to A for Caps
        Dim max = Convert.ToInt32("z"c) + 1
        'Change z to Z for Caps
        Dim rng As New Random
        Dim RndText As New StringBuilder(3)
        For count = 1 To 3
            RndText.Append(Convert.ToChar(rng.Next(min, max)))
        Next
        SendKeys.Send("{enter}")
        SendKeys.Send(TextBox1.Text + " =" & RndText.ToString + "=")
        SendKeys.Send("{enter}")
        Timer3.Enabled = False
Now, you are done!

Please post any bugs, and post the error log (If you get one)

FULL CODE:

Code:
Imports System.Text
Public Class Form1
    Public Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
    Dim result As Integer

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        If GetAsyncKeyState(Keys.F11) Then
            Timer3.Enabled = True
        End If
        If GetAsyncKeyState(Keys.F6) Then
            Timer2.Enabled = True
            TextBox1.Text = ""
        End If
        If GetAsyncKeyState(Keys.F7) Then
            Timer2.Enabled = False
        End If
    End Sub

    Private Sub Timer3_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
        For i = 1 To 255
            result = 0
            result = GetAsyncKeyState(i)
            If result = -32767 Then
                TextBox1.Text = TextBox1.Text + Chr(i)
            End If
        Next i
    End Sub

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

    End Sub

    Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
        If CheckBox1.Checked = True Then
            TextBox1.Visible = True
        Else
            TextBox1.Visible = False
        End If
    End Sub

    Private Sub Timer4_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer3.Tick
        Dim min = Convert.ToInt32("a"c)
        'Change a to A for Caps
        Dim max = Convert.ToInt32("z"c) + 1
        'Change z to Z for Caps
        Dim rng As New Random
        Dim RndText As New StringBuilder(3)
        For count = 1 To 3
            RndText.Append(Convert.ToChar(rng.Next(min, max)))
        Next
        SendKeys.Send("{enter}")
        SendKeys.Send(TextBox1.Text + " =" & RndText.ToString + "=")
        SendKeys.Send("{enter}")
        Timer3.Enabled = False
    End Sub

    Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs)

    End Sub
End Class
#1 · edited 16y ago · 16y ago
ĎÁŗҚ ĉҰρҢềŔ
ĎÁŗҚ ĉҰρҢềŔ
Thank you This help Ppl
#2 · 16y ago
stevethehacker
stevethehacker
looks ok I guess but there r 2 many of these tutorials.
#3 · 16y ago
Pixie
Pixie
Quote Originally Posted by stevethehacker View Post
looks ok I guess but there r 2 many of these tutorials.
Yeah but this has a ingame message changer
Don't see that often do ya?
#4 · 16y ago
stevethehacker
stevethehacker
Quote Originally Posted by PixieCorp View Post
Yeah but this has a ingame message changer
Don't see that often do ya?
I guess not lol thats pretty cool
#5 · 16y ago
Pixie
Pixie
Quote Originally Posted by stevethehacker View Post
I guess not lol thats pretty cool
Yeah, I was ingame one day with my spammer, and thinking it was so annoying to keep minimizing just to change the message
So I started to think of a keylogger, and used it for a different purpose

I am still searching for my old source codes, but I am very busy, but after this week I wont, and I'll probably post a lot of tutorials
#6 · 16y ago
iWAFFLE
iWAFFLE
This may sound stupid,But what do you mean by "Above Form1"
#7 · 16y ago
guza44_44
guza44_44
very sexy xD i like the bright idea keep it up
#8 · 16y ago
Pixie
Pixie
Quote Originally Posted by iWAFFLE View Post
This may sound stupid,But what do you mean by "Above Form1"
Where it says Form1
I would give you a screenshot, but imageshack wont upload

I will edit the thread and add full source code
#9 · 16y ago
starpwnage
starpwnage
Intresting, but does it actually work in combat arms?
I was told that the sendkeys method was patched?
#10 · 16y ago
Zoom
Zoom
Quote Originally Posted by starpwnage View Post
Intresting, but does it actually work in combat arms?
I was told that the sendkeys method was patched?
Only in lobby xP

P.s Dont dump in old treads ffs!
#11 · 16y ago
MN
mnpeep
Kewl, i love it.
#12 · 16y ago
Pixie
Pixie
Quote Originally Posted by hejsan1 View Post
Only in lobby xP

P.s Dont dump in old treads ffs!
Actually combat arms spammers do work in game, you just have to press the first enter
#13 · 16y ago
Zoom
Zoom
Quote Originally Posted by PixieCorp View Post


Actually combat arms spammers do work in game, you just have to press the first enter
Yeah but you cant make it move or press a key
#14 · 16y ago
MN
mnpeep
mine auto presses enter if you set it, next version wil have double enter.
#15 · 16y ago
Posts 1–15 of 32 · Page 1 of 3

Post a Reply

Similar Threads

  • SUPER Spammer + hotkeys + ingame message changerBy hopefordope in Combat Arms Spammers, Injectors and Multi Tools
    14Last post 16y ago
  • [TUT]Make a spammer in C++.By Ionizer in Programming Tutorials
    13Last post 15y ago
  • [TUT] Make A Korean WarRock AccountBy castaway in WarRock Korea Hacks
    185Last post 17y ago
  • Jack's Tut-Making TutBy Jackal in Tutorials
    8Last post 20y ago
  • [TUT] Making trainer in UCEBy nabbos in WarRock - International Hacks
    2Last post 19y ago

Tags for this Thread

#changer#char#hotkeys#ingame#message#rndm#spammer#tutmake#w or