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 › Help MPGH (Visual Basic Pro's)

Help MPGH (Visual Basic Pro's)

Posts 1–6 of 6 · Page 1 of 1
UL
ultahackers
Help MPGH (Visual Basic Pro's)
Ok so i am working on my hack and i want to make a loader that will hold the .dll file in it.. then when Combat Arms..or WarRock starts the hack will be injected...
-------------------------
loader that hooks up the HAck (DLL) to the program
so like u have to run the program to GET the dll
Like the DLL's built into the program??
/yea

please help me.... ty
#1 · 15y ago
NextGen1
NextGen1
If you post this (move this) to the vb section, you can get more help.

We have numerous tutorials and open source applications to do just this.
you may need some help with auto inject, but when this is moved, you will get it.

#2 · 15y ago
Liz
[MPGH]Liz
Moved to VB section.
#3 · 15y ago
NextGen1
NextGen1
Quote Originally Posted by Liz View Post
Moved to VB section.
Faster then I can type

Anyway, again, there are numerous tutorials and open source applications for injectors, if you want to auto inject.



Your Function
Code:
Public Function GameStarted(ByVal ProcessName As String) As Integer
 Try
   Return Process.GetProcessesByName(ProcessName).GetUpperBound(0) + 1
 Catch
   Return 0
 End Try
 
End Function
Then use you function in a timer with a flag

Code:
If GameStarted("Combat Arms") = 1 Then
'YadaYadaYads
' set flag = true
'disable timer

End If
~Standard MSDN code for checking if a process is running, by adding it to a timer, you can check to see if it has "started" then you can use flags to trigger


#4 · 15y ago
UL
ultahackers
Ty for move Liz. But still need some help
#5 · 15y ago
Jason
Jason
Quote Originally Posted by NextGen1 View Post


Faster then I can type

Anyway, again, there are numerous tutorials and open source applications for injectors, if you want to auto inject.



Your Function
Code:
Public Function GameStarted(ByVal ProcessName As String) As Integer
 Try
   Return Process.GetProcessesByName(ProcessName).GetUpperBound(0) + 1
 Catch
   Return 0
 End Try
 
End Function
Then use you function in a timer with a flag

Code:
If GameStarted("Combat Arms") = 1 Then
'YadaYadaYads
' set flag = true
'disable timer

End If
~Standard MSDN code for checking if a process is running, by adding it to a timer, you can check to see if it has "started" then you can use flags to trigger


Pretty much the same thing, but minus the Try-Catch
[php]
Private Function GameStarted(ByVal procName As String) As Boolean
If Process.GetProcessesByName(procName)(0).Length > 0 Then
Return True
Else
Return False
End if
End function
[/php]

As for extracting the file to the computer to inject it. Consider the following:

[php]
dim rand As New Random
Dim tmp As String = String.Concat(My.Computer.FileSystem.GetTempfileNa me, Cint(rand.next(1, 58) * 75723), ".dll")
IO.File.WriteAllBytes(tmp, My.Resources.OMGAWESOMEHACK)
'do injection specifying the path as "tmp"
[/php]
#6 · 15y ago
Posts 1–6 of 6 · Page 1 of 1

Post a Reply

Similar Threads

  • [RELEASE]Official MPGH Visual Basics Help site (with vBulletin!)By Pixie in Visual Basic Programming
    31Last post 16y ago
  • HELP IN visual basic 2008By zmansquared in Combat Arms Hacks & Cheats
    2Last post 17y ago
  • Need Help With Visual Basic 2008By xsaban13x in Combat Arms Discussions
    2Last post 16y ago
  • Need help with visual basic PHISHING programBy mariofan901 in Visual Basic Programming
    14Last post 16y ago
  • MPGH Visual Basic TemplateBy Jeckels in WarRock - International Hacks
    1Last post 19y ago

Tags for this Thread

None