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 › MultiPlayer Game Hacks & Cheats › CrossFire Hacks & Cheats › CrossFire Hack Coding / Programming / Source Code › Multi-Line Spammer Tutorial + Source code and project

Multi-Line Spammer Tutorial + Source code and project

Posts 1–6 of 6 · Page 1 of 1
DR
dragonattak
Multi-Line Spammer Tutorial + Source code and project
What do you need?
  • 5 Textbox
  • 5 Checkbox near the textbox for active each textbox
  • 1 Button for start the spammer
  • Another checkbox called PressEnter for enable the enter key every text to spam
  • 1 numericupdown
  • 3 timer, one called Verify, one Spam and one HotKey

How do?
Write under the "Public Class Form1"
Code:
    Public Verifica As Boolean = True
    Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vkey As Long) As Integer
Set the interval of the Verify timer to 500
After write
Code:
If CheckBox1.Checked Then
        Else
            CheckBox1.Checked = True
        End If
        Spam.Interval = NumericUpDown1.Value
Then click on the button1 and write
Code:
  If Verifica = False Then
            Button1.Text = "Start"
            Verifica = True
            Spam.Stop()
        ElseIf Verifica = True Then
            Button1.Text = "Stop"
            Verifica = False
            Threading.Thread.Sleep("2000")
            Spam.Start()
        End If
Now click on the "Spam" timer and write
Code:
  SendKeys.Send(TextBox1.Text)
        If PressEnter.Checked Then
            SendKeys.Send("{ENTER}")
        End If
        If CheckBox2.Checked Then
            SendKeys.Send(TextBox2.Text)
            If PressEnter.Checked Then
                SendKeys.Send("{ENTER}")
            End If
        ElseIf CheckBox3.Checked Then
            SendKeys.Send(TextBox3.Text)
            If PressEnter.Checked Then
                SendKeys.Send("{ENTER}")
            End If
        ElseIf CheckBox4.Checked Then
            SendKeys.Send(TextBox4.Text)
            If PressEnter.Checked Then
                SendKeys.Send("{ENTER}")
            End If
        ElseIf CheckBox5.Checked Then
            SendKeys.Send(TextBox5.Text)
            If PressEnter.Checked Then
                SendKeys.Send("{ENTER}")
            End If
        End If
Then click on the form and write
Code:
   
msgbox ("Coded by Dragonattak")
Verify.Start()
        HotKey.Start()
After click on the HotKey timer and write
Code:
If GetAsyncKeyState(Keys.F10) Then
            If Verifica = False Then
                Button1.Text = "Start"
                Verifica = True
                Spam.Stop()
            ElseIf Verifica = True Then
                Button1.Text = "Stop"
                Verifica = False
                Threading.Thread.Sleep("2000")
                Spam.Start()
            End If
        End If
And after debug your project
Full source:
Code:
Public Class Form1
    Public Verifica As Boolean = True
    Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vkey As Long) As Integer
    Private Sub Checked_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Verify.Tick
        If CheckBox1.Checked Then
        Else
            CheckBox1.Checked = True
        End If
        Spam.Interval = NumericUpDown1.Value
    End Sub

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        If Verifica = False Then
            Button1.Text = "Start"
            Verifica = True
            Spam.Stop()
        ElseIf Verifica = True Then
            Button1.Text = "Stop"
            Verifica = False
            Threading.Thread.Sleep("2000")
            Spam.Start()
        End If
    End Sub

    Private Sub Spam_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Spam.Tick
        SendKeys.Send(TextBox1.Text)
        If PressEnter.Checked Then
            SendKeys.Send("{ENTER}")
        End If
        If CheckBox2.Checked Then
            SendKeys.Send(TextBox2.Text)
            If PressEnter.Checked Then
                SendKeys.Send("{ENTER}")
            End If
        ElseIf CheckBox3.Checked Then
            SendKeys.Send(TextBox3.Text)
            If PressEnter.Checked Then
                SendKeys.Send("{ENTER}")
            End If
        ElseIf CheckBox4.Checked Then
            SendKeys.Send(TextBox4.Text)
            If PressEnter.Checked Then
                SendKeys.Send("{ENTER}")
            End If
        ElseIf CheckBox5.Checked Then
            SendKeys.Send(TextBox5.Text)
            If PressEnter.Checked Then
                SendKeys.Send("{ENTER}")
            End If
        End If
    End Sub

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
("Coded by Dragonattak")        
Verify.Start()
        HotKey.Start()
    End Sub

    Private Sub HotKey_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles HotKey.Tick
        If GetAsyncKeyState(Keys.F10) Then
            If Verifica = False Then
                Button1.Text = "Start"
                Verifica = True
                Spam.Stop()
            ElseIf Verifica = True Then
                Button1.Text = "Stop"
                Verifica = False
                Threading.Thread.Sleep("2000")
                Spam.Start()
            End If
        End If
    End Sub
End Class
VirusScans for the project
{X}{X}
The project is below, remember to give credits to me!
#1 · edited 15y ago · 15y ago
Ryuesi
Ryuesi
Nice Tut Dragonattak
#2 · 15y ago
DR
dragonattak
Quote Originally Posted by Lexical View Post
Nice Tut Dragonattak
Ty
/msg2short
#3 · 15y ago
proman98
proman98
im gonna try it good job
#4 · 15y ago
CA
Cal
Repped you, good to see your doing something
#5 · 15y ago
Ryuesi
Ryuesi
Quote Originally Posted by dragonattak View Post


Ty
/msg2short
No Problem
#6 · 15y ago
Posts 1–6 of 6 · Page 1 of 1

Post a Reply

Tags for this Thread

None