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 › [VB]Combat Arms Multi Tool Source

Thumbs up[VB]Combat Arms Multi Tool Source

Posts 1–10 of 10 · Page 1 of 1
Yepikiyay
Yepikiyay
[VB]Combat Arms Multi Tool Source
Credits: Br33Zzii, Dennis, acid_buRn, freedompeace, XGelite

CBL Detector:
Code:
Dim url As String
        url = "http://thecaconline.net/cbl/cbl.php?player=" + TextBox1.Text
        Dim request As System.Net.HttpWebRequest = System.Net.HttpWebRequest.Create(url)
        Dim response As System.Net.HttpWebResponse = request.GetResponse()
        Dim sr As System.IO.StreamReader = New System.IO.StreamReader(response.GetResponseStream(), System.Text.Encoding.GetEncoding("windows-1252"))
        Dim Online As String
        Online = sr.ReadToEnd()
        If InStr(Online, "</S></FONT></A> ") Then
            Label2.Text = "BANNED"
            Label2.ForeColor = Color.Red
            Label2.Visible = True
        ElseIf InStr(Online, "cbl/images/clean.png") Then
            Label2.Text = "CLEAN"
            Label2.ForeColor = Color.Green
            Label2.Visible = True
        ElseIf InStr(Online, "cbl/images/dirty.png") Then
            Label2.Text = "DIRTY"
            Label2.ForeColor = Color.Red
            Label2.Visible = True
        End If
    End Sub
Cleaner:
Code:
Public Class Cleaner
    Const WM_NCHITTEST As Integer = &H84
    Const HTCLIENT As Integer = &H1
    Const HTCAPTION As Integer = &H2
    Protected Overrides Sub WndProc(ByRef m As System.Windows.Forms.Message)
        Select Case m.Msg
            Case WM_NCHITTEST
                MyBase.WndProc(m)
                If m.Result = HTCLIENT Then m.Result = HTCAPTION
            Case Else
                MyBase.WndProc(m)
        End Select
    End Sub
    Private Sub Label2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label2.Click
        Me.Close()
    End Sub

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

    End Sub

    Private Sub CheckBox7_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox7.CheckedChanged
        If CheckBox7.Checked = True Then
            CheckBox1.Checked = True
            CheckBox2.Checked = True
            CheckBox3.Checked = True
            CheckBox4.Checked = True
            CheckBox5.Checked = True
            CheckBox6.Checked = True
            CheckBox9.Checked = True
        Else
            If CheckBox7.Checked = False Then
                CheckBox1.Checked = False
                CheckBox2.Checked = False
                CheckBox3.Checked = False
                CheckBox4.Checked = False
                CheckBox5.Checked = False
                CheckBox6.Checked = False
                CheckBox9.Checked = False
            End If
        End If
    End Sub

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        If CheckBox1.Checked Then
            On Error Resume Next
            Kill("C:\Nexon\Combat Arms\*.txt")
        If CheckBox2.Checked Then
            On Error Resume Next
            Kill("C:\Nexon\Combat Arms\*.jpg")
            If CheckBox3.Checked Then
                On Error Resume Next
                Kill("C:\Nexon\Combat Arms\*.bin")
                If CheckBox4.Checked Then
                    On Error Resume Next
                    Kill("C:\Nexon\Combat Arms\*.v3d")
                    If CheckBox5.Checked Then
                        On Error Resume Next
                        Kill("C:\Nexon\Combat Arms\*.dmp")
                        If CheckBox6.Checked Then
                            On Error Resume Next
                            Kill("C:\Nexon\Combat Arms\*.dump")
                                If CheckBox9.Checked Then
                                    On Error Resume Next
                                Kill("C:\Nexon\Combat Arms\EndingBanner.exe")
                                End If
                            End If
                        End If
                    End If
                End If
            End If
        End If
    End Sub
End Class
Flashing LinkLabel:
Code:
 Private Sub LinkLabel1_LinkClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles LinkLabel1.LinkClicked
        System.Diagnostics.Process.Start("http://www.*********.com/")
    End Sub

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        Timer1.Interval = (600)
        Me.LinkLabel1.Visible = Not Me.LinkLabel1.Visible
    End Sub
well that its!
#1 · 16y ago
Blubb1337
Blubb1337
You may add a sample project.

Very basic, thanks for the release though.
#2 · 16y ago
Yepikiyay
Yepikiyay
Quote Originally Posted by Blubb1337 View Post
You may add a sample project.

Very basic, thanks for the release though.
im not at home and i dont have vb i wiped my HDD's 2 days ago
#3 · 16y ago
'Bruno
'Bruno
nice, this time you placed it on the right section

plus this is a easy way for leechers to C&P and claim their code.. but still. thanks for share.
#4 · 16y ago
MugNuf
MugNuf
I don't think that CBL Detector works anymore.

Pretty dumb way to make a cleaner, but i guess it works =/.

The flashing label is kinda cool.

Its all basic except the CBL Detector.
#5 · 16y ago
Jason
Jason
[php]

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If CheckBox1.Checked Then
On Error Resume Next
Kill("C:\Nexon\Combat Arms\*.txt")
If CheckBox2.Checked Then
On Error Resume Next
Kill("C:\Nexon\Combat Arms\*.jpg")
If CheckBox3.Checked Then
On Error Resume Next
Kill("C:\Nexon\Combat Arms\*.bin")
If CheckBox4.Checked Then
On Error Resume Next
Kill("C:\Nexon\Combat Arms\*.v3d")
If CheckBox5.Checked Then
On Error Resume Next
Kill("C:\Nexon\Combat Arms\*.dmp")
If CheckBox6.Checked Then
On Error Resume Next
Kill("C:\Nexon\Combat Arms\*.dump")
If CheckBox9.Checked Then
On Error Resume Next
Kill("C:\Nexon\Combat Arms\EndingBanner.exe")
End If
End If
End If
End If
End If
End If
End If
End Sub
[/php]

fail kill commands. If checkbox1 isn't checked then nothing else will clean. Give each Kill it's own "If -> End If" wrappers.

Also this makes killing a lot easier

[php]
Private Sub Killa (ByVal ext as String)

Kill("C:\Nexon\Combat Arms\" & ext)

End Sub
[/php]
Then whenever you kill shit.

say to remove endingbanner:

[php]
killa("EndingBanner.exe")
[/php]

chyeah.
#6 · edited 16y ago · 16y ago
tempta43
tempta43
Epic Leech.
I've seen this on like 10 websites.
#7 · 16y ago
'Bruno
'Bruno
Quote Originally Posted by tempta43 View Post
Epic Leech.
I've seen this on like 10 websites.
well.. he is giving credits..
#8 · 16y ago
Lolland
Lolland
Nice tutorial... kinda.

Err, copy and paste much?
#9 · 16y ago
Yepikiyay
Yepikiyay
Quote Originally Posted by lolland View Post
Nice tutorial... kinda.

Err, copy and paste much?
Yea but o have credit where credit was due
#10 · 16y ago
Posts 1–10 of 10 · Page 1 of 1

Post a Reply

Similar Threads

  • My First Combat Arms Multi-ToolBy romario313 in Combat Arms Hacks & Cheats
    26Last post 16y ago
  • Combat Arms Multi ToolBy [Minion]Fo in Combat Arms Hacks & Cheats
    16Last post 16y ago
  • Combat Arms Multi ToolBy Takari1 in Combat Arms Discussions
    3Last post 15y ago
  • Criss's Combat Arms Multi-Tool (Noob Version)By Criss-Cross in Combat Arms Spammers, Injectors and Multi Tools
    5Last post 15y ago
  • Combat Arms Utilities Open Source ProjectBy User1 in Combat Arms Hacks & Cheats
    28Last post 17y ago

Tags for this Thread

None