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 tapper(source + tutorial)

vb combat arms tapper(source + tutorial)

Posts 1–15 of 38 · Page 1 of 3
stevethehacker
stevethehacker
vb combat arms tapper(source + tutorial)
Ok here is the source for the one I released about a month ago. Here is the thread-
http://www.mpgh.net/forum/164-combat...r-hotkeys.html
ok this was quite easy to make. It still works.

Step 1
Add 2 timer's to your project
Step 2
Copy and paste source
Step 3
Press Thanks button
Code:
Public Class Form1
    Public Declare Function GetAsyncKeyState Lib "User32" (ByVal vKey As Long) As Integer
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Timer1.Enabled = True
        Timer2.Enabled = True
    End Sub


    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        Dim Hotkey1 As Boolean
        Hotkey1 = GetAsyncKeyState(Keys.F11)
        If Hotkey1 = True Then
            Timer1.Enabled = True
            Shell("NET START DHCP")
        End If

    End Sub

    Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
        Dim Hotkey2 As Boolean
        Hotkey2 = GetAsyncKeyState(Keys.F10)
        If Hotkey2 = True Then
            Timer2.Enabled = True
            Shell("NET STOP DHCP")
        End If
    End Sub


End Classl
#1 · edited 16y ago · 16y ago
Zoom
Zoom
Alredy knows this ^^, but nice tut to every1 who doesn´t!
#2 · 16y ago
stevethehacker
stevethehacker
Quote Originally Posted by hejsan1 View Post
Alredy knows this ^^, but nice tut to every1 who doesn´t!
yeah. most choobs couldn't figure this out to save their lives. they should be able to make one now though since they have a source code right in front of their face
#3 · 16y ago
Zoom
Zoom
Quote Originally Posted by stevethehacker View Post
yeah. most choobs couldn't figure this out to save their lives. they should be able to make one now though since they have a source code right in front of their face
Can you please edit your code or there will be millions of tappers in combat arms section....... Just remove some words so it give them a lot of errors!
#4 · 16y ago
SPittn_Blood
SPittn_Blood
Quote Originally Posted by hejsan1 View Post
Can you please edit your code or there will be millions of tappers in combat arms section....... Just remove some words so it give them a lot of errors!


Perfect Plot! Mu-Haw-Haw

Thanks very much for this
#5 · edited 16y ago · 16y ago
ark1227
ark1227
lol thanks for this... it really eazy but for some ppl who wunt to lern... its a good start..

thanks for this!
#6 · 16y ago
guza44_44
guza44_44
can i have some help? this doesnt work at all because it asks me if i want to yes or no in a cmd prompt box and if i try this with hotkeys it does nothing so how do u force it?

also when i use other pplz they still ask me yes or no
#7 · edited 16y ago · 16y ago
stevethehacker
stevethehacker
OS? use the -silent code in the shell. then no cmd will pop up at all I believe
#8 · 16y ago
Zoom
Zoom
Quote Originally Posted by guza44_44 View Post
can i have some help? this doesnt work at all because it asks me if i want to yes or no in a cmd prompt box and if i try this with hotkeys it does nothing so how do u force it?

also when i use other pplz they still ask me yes or no
What OS u running? This is for 32bit users!
#9 · 16y ago
stevethehacker
stevethehacker
yeah this should on work for 32 bit but I think the -silent code might fix it.
#10 · 16y ago
LU
Lukas59
nobody had done the third step--xD
#11 · 16y ago
stevethehacker
stevethehacker
Quote Originally Posted by krellooo View Post
nobody had done the third step--xD
yes I give people source code. they copy and paste. then don't thank me and post their program on another website. thats how it goes
#12 · 16y ago
Zoom
Zoom
Quote Originally Posted by stevethehacker View Post
yes I give people source code. they copy and paste. then don't thank me and post their program on another website. thats how it goes
That´s why u don´t should post the FULL code! Make it like time!r1.enabled blablabla!
#13 · 16y ago
stevethehacker
stevethehacker
Quote Originally Posted by hejsan1 View Post
That´s why u don´t should post the FULL code! Make it like time!r1.enabled blablabla!
yeah I even added a code so that they didn't have to go to all those mouse clicks to enable both timers. The choobs that copied and pasted it probably don't know how to enable the timers
#14 · 16y ago
Zoom
Zoom
Quote Originally Posted by stevethehacker View Post
yeah I even added a code so that they didn't have to go to all those mouse clicks to enable both timers. The choobs that copied and pasted it probably don't know how to enable the timers
Hope so...
#15 · 16y ago
Posts 1–15 of 38 · Page 1 of 3

Post a Reply

Similar Threads

  • a whole combat arms aimbot making tutorial plzBy jts88825 in Programming Tutorial Requests
    0Last post 17y ago
  • Combat Arms Easter Egg TutorialBy oobio in Combat Arms Hacks & Cheats
    6Last post 17y ago
  • Combat Arms Making Hack Tutorial (please make)By imsodangerus in Programming Tutorial Requests
    3Last post 17y ago
  • Combat Arms Warhead Glitch Tutorial.By Thijs12 in Combat Arms Glitches
    12Last post 17y ago
  • Combat Arms Injector Source CodeBy Melikepie in Combat Arms Discussions
    6Last post 16y ago

Tags for this Thread

#arms#combat#tappersource#tutorial