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 › Crossfire Coding Help & Discussion › Vb.net Memory Hacking Problem

ExclamationVb.net Memory Hacking Problem

Posts 1–15 of 25 · Page 1 of 2
steveroseik
steveroseik
Vb.net Memory Hacking Problem
I Made a Vb.net Memory Hack :
The Function was wallhack That's What I started with.

When I WriteMemory The Xtrap Traps The Hack

Code:
 
 Dim Tval As String = "20"
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
        Me.Hide()
        System.Threading.Thread.Sleep(6000)
        Dim p As Process = Nothing
        If Process.GetProcessesByName("crossfire").Count > 0 Then
            p = Process.GetProcessesByName("crossfire")(0)
        Else
            MessageBox.Show("crossfire not open!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Warning)
            Exit Sub
        End If
        Dim Adr As Int32 = &H743AD4
        Try
            If WriteInt32(p, Adr, Tval) Then

            Else
                MessageBox.Show("Writing memory failed!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Warning)
            End If
        Catch ex As Exception
            MessageBox.Show("Writing memory failed: " & vbCrLf & ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Warning)
        End Try

    End Sub
People Said That it's About WriteMemory
But I can't Change it
Cause it says "it's Not in kernel32.dll"
Anyone Have a Solution ?
#1 · edited 12y ago · 12y ago
Jim
Jim
Sweet Source man, I'll try and solve this tonight. Mind if I leech?
#2 · 12y ago
steveroseik
steveroseik
Quote Originally Posted by Vertice View Post
Sweet Source man, I'll try and solve this tonight. Mind if I leech?
Give Credits, and I didn't Post the Module xD
so this is not the Main
#3 · 12y ago
LU
lucasheer715
2 great functions for memory editing are :
CType
DirectCast
If you look them up :
CType = DWORD
DirectCast = Float
I think you will get the same X-Trap Problem but idk...
#4 · 12y ago
steveroseik
steveroseik
Quote Originally Posted by lucasheer715 View Post
2 great functions for memory editing are :
CType
DirectCast
If you look them up :
CType = DWORD
DirectCast = Float
I think you will get the same X-Trap Problem but idk...
SKYPE ?
Thank you anyways
#5 · 12y ago
steveroseik
steveroseik
Any Other IDEAS ??
#6 · 12y ago
rabir007
rabir007
Quote Originally Posted by steveroseik View Post
Any Other IDEAS ??
Just an example, i did this in C#, IDK the syntax in VB.NET:
Also some line is just a quick intro...
Code:
Process CfProc = Process.GetProcessesByName("Crossfire");

//Finding CShell
foreach (ProcessModule Mod in CfProc.Modules)
    if Mod.Name = "CShell.dll" CShellHandle = Mod.BaseAddress;

WriteMemory(Crossfire, CShell + [your address], [your value]); /6or whatever method you are using...

Please let me remind you, if you let Crosfire's process opened for too much time, you'll get Xtrap error...
So close it and add a sleep to let Xcrap calm down
or
only open the memory when you want to edit someting and then inmediately close it...

Good luck man...
#7 · 12y ago
steveroseik
steveroseik
Quote Originally Posted by rabir007 View Post


Just an example, i did this in C#, IDK the syntax in VB.NET:
Also some line is just a quick intro...
Code:
Process CfProc = Process.GetProcessesByName("Crossfire");

//Finding CShell
foreach (ProcessModule Mod in CfProc.Modules)
    if Mod.Name = "CShell.dll" CShellHandle = Mod.BaseAddress;

WriteMemory(Crossfire, CShell + [your address], [your value]); /6or whatever method you are using...

Please let me remind you, if you let Crosfire's process opened for too much time, you'll get Xtrap error...
So close it and add a sleep to let Xcrap calm down
or
only open the memory when you want to edit someting and then inmediately close it...

Good luck man...
A Question :
What do u mean with Crossfire Process
do u mean "crossfire.exe"
and how to close it ?
#8 · 12y ago
steveroseik
steveroseik
Quote Originally Posted by rabir007 View Post


Just an example, i did this in C#, IDK the syntax in VB.NET:
Also some line is just a quick intro...
Code:
Process CfProc = Process.GetProcessesByName("Crossfire");

//Finding CShell
foreach (ProcessModule Mod in CfProc.Modules)
    if Mod.Name = "CShell.dll" CShellHandle = Mod.BaseAddress;

WriteMemory(Crossfire, CShell + [your address], [your value]); /6or whatever method you are using...

Please let me remind you, if you let Crosfire's process opened for too much time, you'll get Xtrap error...
So close it and add a sleep to let Xcrap calm down
or
only open the memory when you want to edit someting and then inmediately close it...

Good luck man...
I Also Need to know about Your Code what Does "ProcessModule" and "Mod" Belongs to
#9 · 12y ago
rabir007
rabir007
Quote Originally Posted by steveroseik View Post


I Also Need to know about Your Code what Does "ProcessModule" and "Mod" Belongs to
Thats why i put that its a C# code, IDK what is the qual in VB...

ProcessModule is the loaded modules in the process, like the d3d9.dll, CShell.dll etc...
Mod is a variable type that loop through all Module, in the "foreach" is you are a real coder, you should know what is the "foreach" loop does...
#10 · 12y ago
rabir007
rabir007
Quote Originally Posted by steveroseik View Post


A Question :
What do u mean with Crossfire Process
do u mean "crossfire.exe"
and how to close it ?
The method group, you are suing for memory editing also should have a "CloseHandle()" method...
#11 · 12y ago
steveroseik
steveroseik
@rabir007 ThanQ
#12 · 12y ago
steveroseik
steveroseik
ANOTHER IDEAS PLEASE
NONE OF THE ABOVE WORKED !!!


Some People told me to Encrypt CShell But I don't Even use CShell In The COde
and I've Encrypted The App with Obfuscator and Confuser But None did the job and made xtrap feels Dumb
Does anyone Knows Someone who used to make crossfire hacks with vb.net, they might help me
#13 · 12y ago
sobasoba13
sobasoba13
ask @Pingo
#14 · 12y ago
mamo007
mamo007
Quote Originally Posted by sobasoba13 View Post
ask @Pingo
Pingo didn't open from long time ago .
#15 · 12y ago
Posts 1–15 of 25 · Page 1 of 2

Post a Reply

Similar Threads

  • VB.Net Memory HackBy xKarma in Visual Basic Programming
    3Last post 14y ago
  • [H]aaBX Public Hack V1 (MPGH.NET) - Memory Hack - WorkingBy [H]aaBX in CrossFire Hacks & Cheats
    234Last post 13y ago
  • Hack problem?? Memory ErrorBy Hatrem in Combat Arms Hacks & Cheats
    1Last post 17y ago
  • Hacking problem for Bots (Acclaim)By pk7677 in General Game Hacking
    2Last post 18y ago
  • hacking problemsBy iwillkillyou in WarRock - International Hacks
    11Last post 20y ago

Tags for this Thread

None