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]VB.NET (2008)

Question[Help]VB.NET (2008)

Posts 1–15 of 18 · Page 1 of 2
CptnDutch
CptnDutch
[Help]VB.NET (2008)
Hi guys,

yeah i know i don't have much posts here but I am almost everyday online to check for new hacks and community news...

My question i need help with:
Can someone help me with some sourcecode or a tut video to make a hack or trainer in VB.NET (version 2008)
I know the regular basics of vb.net but I'm messing up when i want to check if a process is running so that's a problem..
I already asked Archangel (Dutch so easy for me...) but didn't get anough help, I understand he has not enough time to help me..

I hope someone can help me out haha

I will make hacks and trainers if I have the knowledge but atm I havn't any clue to make one so please help me

Ty in advance
CptnDutch
#1 · 15y ago
Inspiration ©
Inspiration ©
Here is godmode:

Code:
Private Sub Command1_Click()
msgBox "Hello, World!"
End Sub
#2 · 15y ago
CptnDutch
CptnDutch
Well as I already said I know the basics
So i know what you just sent me whahaha

just help me out dudes

ty
#3 · 15y ago
Obama
Obama
I would pm Nextgen. He is a vb God
#4 · 15y ago
Heartview
Heartview
That or Blubb. They both pretty good in VB.
#5 · 15y ago
CptnDutch
CptnDutch
thanks guys

I signed up for the Learn to Develop course (advanced visual basic)
so I guess I'm going to learn it now

If Me.GetsApprovedInTheClass Then
Me.give much thanks
Else
Me.VeryDisapointed
EndIf

#6 · 15y ago
Heartview
Heartview
Quote Originally Posted by CptnDutch View Post
thanks guys

I signed up for the Learn to Develop course (advanced visual basic)
so I guess I'm going to learn it now

If Me.GetsApprovedInTheClass Then
Me.give much thanks
Else
Me.VeryDisapointed
EndIf

The point of the courses is to help you learn the language. Not how to hack. If you go in saying that you just want to learn how to hack you wont get in. You have to learn the language, then apply what you learned to make the hack.
#7 · 15y ago
CptnDutch
CptnDutch
Quote Originally Posted by derpderp View Post
The point of the courses is to help you learn the language. Not how to hack. If you go in saying that you just want to learn how to hack you wont get in. You have to learn the language, then apply what you learned to make the hack.
i will trust me
but that was one of the reasons, another is that I have a vb.net and sql exam coming thursday on school and I want to own that exam, just kidding, I want to be a master in vb.net
#8 · 15y ago
MO
Momo5000
Just Design a Form and use tthe WPM/RPM (WriteProcessMemory / ReadProcessMemory) API lulz.
#9 · 15y ago
SE
SERG
Heres one i saw

Code:
For Each Process As Process In Process.GetProcessesByName("BlackOpsMP")
            Dim p As Process() = Process.GetProcessesByName("BlackOpsMP")
            If Not p.Length = 0 Then 'If there then continue
                Process.PriorityClass = ProcessPriorityClass.High
            Else
                MessageBox.Show("Black Ops is not running. Please start it and run again!", "Error") 'Else give error
            End If
#10 · 15y ago
master131
[MPGH]master131
Quote Originally Posted by SERG View Post
Heres one i saw

Code:
For Each Process As Process In Process.GetProcessesByName("BlackOpsMP")
            Dim p As Process() = Process.GetProcessesByName("BlackOpsMP")
            If Not p.Length = 0 Then 'If there then continue
                Process.PriorityClass = ProcessPriorityClass.High
            Else
                MessageBox.Show("Black Ops is not running. Please start it and run again!", "Error") 'Else give error
            End If
That's a hack? O__o
#11 · 15y ago
Blubb1337
Blubb1337
http://www.mpgh.net/forum/279-call-d...ks-v1-1-a.html

Easy as pie.
#12 · edited 15y ago · 15y ago
Jason
Jason
To check if a process is open.

[php]
Private Function IsProcessOpen(ByVal ProcName As String) As Boolean
Dim output As Boolean = False
Dim ProcArray() As Process = Process.GetProcessesByName(ProcName)
If ProcArray.Length > 0 Then output = True
Return output
End Function
[/php]

[php]
If IsProcessOpen("BlackOpsMP") = True Then
' do something
End If
[/php]
#13 · 15y ago
Lolland
Lolland
Quote Originally Posted by master131 View Post
That's a hack? O__o
No, it just shows if blackops multiplayer is running or not...



@Topic:

VB is more of a general development type language than a hacking know it all language.

Although you can hack in VB, it's easier in other languages such as C++/C#, however they take more time and effort to learn, VB has simple syntax and class structures than C++.
#14 · 15y ago
SE
SERG
Quote Originally Posted by Lolland View Post


No, it just shows if blackops multiplayer is running or not...



@Topic:

VB is more of a general development type language than a hacking know it all language.

Although you can hack in VB, it's easier in other languages such as C++/C#, however they take more time and effort to learn, VB has simple syntax and class structures than C++.
yeah, it also sets the priority of the process, but that was a general idea.
#15 · 15y ago
Posts 1–15 of 18 · Page 1 of 2

Post a Reply

Tags for this Thread

None