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 › Call of Duty Hacks & Cheats › Call of Duty 8 - Modern Warfare 3 (MW3) Hacks & Cheats › Call of Duty Modern Warfare 3 Coding, Programming & Source Code › VB.Net Memory Class (Writen by Jorndel)

Red faceVB.Net Memory Class (Writen by Jorndel)

Posts 16–26 of 26 · Page 2 of 2
LO
Lovroman
Quote Originally Posted by kooperpc View Post
How can I modify the 8Bytes values?
New Write Function:
Code:
   Private Sub Write(Address As Integer, Value As Long)
        Dim Buffer As Byte() = BitConverter.GetBytes(Value)
        Dim Zero As IntPtr = IntPtr.Zero
        WriteProcessMemory(pHandel, New IntPtr(Address), Buffer, UInt32.Parse(Buffer.Length), Zero)
    End Sub
New WriteLong Function:
Code:
    Public Sub WriteLong(Address As Integer, Value As Long)
        Write(Address, Value)
    End Sub
Simple enough.
Or just convert it to byte/2-bytes/4-bytes .
#16 · edited 13y ago · 13y ago
0wned1337
0wned1337
Hey Guys, I'm currently having a problem with the class while trying to read/write from/on pointer addresses. It would be very cool if someone could look at it. Thank You

http://www.mpgh.net/forum/33-visual-...ml#post9181872
#17 · 12y ago
ME
Mezocration
net.framerwork 4 is needed ???
#18 · 12y ago
LO
Lovroman
Quote Originally Posted by Mezocration View Post
net.framerwork 4 is needed ???
It's recommended to have it installed on your PC.
#19 · 12y ago
TheProxy
TheProxy
u can add this
Code:
    Function StringToHex(ByVal text As String) As String
        Dim hex As String
        For i As Integer = 0 To text.Length - 1
            hex &= Asc(text.Substring(i, 1)).ToString("x").ToUpper
        Next
        Return hex
    End Function
    Function HexToString(ByVal hex As String) As String
        Dim text As New System.Text.StringBuilder(hex.Length \ 2)
        For i As Integer = 0 To hex.Length - 2 Step 2
            text.Append(Chr(Convert.ToByte(hex.Substring(i, 2), 16)))
        Next
        Return text.ToString
    End Function
that u can convert bytes to string and string to hex example for namefaker
#20 · 12y ago
Ucozol
Ucozol
String function not working!
#21 · 12y ago
KH
khanems
can i get the example code from the form side too like u gave example code for the c#

and also it can search PID from chrome browser to detect the flash player ?
#22 · 11y ago
Dave's Mexican
Dave's Mexican
i get the error
Quote Originally Posted by VB.NET
object reference not set to an instance of an object
when i try to write a string to mw2.
any help?
#23 · 11y ago
MI
MiyakeDev
Usage for WriteString with the Process Target??
#24 · 9y ago
Silent
[MPGH]Silent
Quote Originally Posted by MiyakeDev View Post
Usage for WriteString with the Process Target??
If you can't call a function use this:


Or read through the code and figure it out yourself.
#25 · 9y ago
AL
Alizer
But how about if I wanna Read or Write Doubles? I need code pls.
#26 · 8y ago
Posts 16–26 of 26 · Page 2 of 2

Post a Reply

Similar Threads

  • C# Memory Class (Writen by Jorndel)By Jorndel in Call of Duty Modern Warfare 3 Coding, Programming & Source Code
    12Last post 7y ago
  • Easy Class Editor for alteriw.netBy sisadebela in Call of Duty Modern Warfare 2 Private Servers
    7Last post 16y ago
  • Memory Hack base Using Classes Help I Don't Get ItBy kmanev073 in CrossFire Hack Coding / Programming / Source Code
    10Last post 14y ago
  • [VB.Net] Read MemoryBy jabbathehutt in Visual Basic Programming
    10Last post 15y ago
  • [Help]Reading Stacks from memory using VB.netBy euverve in Visual Basic Programming
    2Last post 15y ago

Tags for this Thread

None