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 10 - Ghosts Hacks & Cheats › Call of Duty Ghosts Coding & Resources › VB.NET Memory Module v2 by master131 [x86/x64 Compatible]

VB.NET Memory Module v2 by master131 [x86/x64 Compatible]

Posts 31–45 of 125 · Page 3 of 9
…
Jorndel
Jorndel
Quote Originally Posted by KingX735 View Post
When i use this :

Code:
   Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
        Dim myIntValue As Integer = ReadMemory(Of Integer)("&H144332E38" + ComboBox1.Text)
    End Sub
There is nothing on Com bo box1.Text
You would have to do:

Combo Box1.SelectedItem


Edit:

Checked with .Text and it should work too. I guess it's just that you're doing something wrong.
As now you do:

"&H144332E38" + "Item1Value"
Which is: "&H144332E38Item1Value"
#31 · edited 12y ago · 12y ago
KingX735
KingX735
Quote Originally Posted by Jorndel View Post


You would have to do:

Combo Box1.SelectedItem


Edit:

Checked with .Text and it should work too. I guess it's just that you're doing something wrong.
As now you do:

"&H144332E38" + "Item1Value"
Which is: "&H144332E38Item1Value"
No no no

I just want to get the value in &H144332E38 and get it in a textbox for exemple
#32 · 12y ago
Jorndel
Jorndel
Quote Originally Posted by KingX735 View Post
No no no

I just want to get the value in &H144332E38 and get it in a textbox for exemple
I sort of find VB hard to get. (And I do find the class/module a little hard to understand as well )

Let's try then


Dim MyReadings As String = ReadMemory(Of String)(&H144332E38 , 10, False) 'I dunno the length of the string so
Combo box1.Items.Add(MyReadings)
#33 · 12y ago
KingX735
KingX735
Doesn't work
And a textbox instead a Combo box is better
#34 · edited 12y ago · 12y ago
Jorndel
Jorndel
Quote Originally Posted by KingX735 View Post
Doesn't work
And a textbox instead a Combo box is better
As I work with IT-Support.

"It doesn't work" is something I hear everyday. But they never explain or tell the problem until you ask them
So I'll have to ask you: What doesn't work?

Do you get an error?
-What does it say

Nothing happens?
-What is your code

And more, so share more info about your problem(s)
#35 · 12y ago
KingX735
KingX735
Oh, nevermind ! everything is fine

Code:
 If UpdateProcessHandle() Then
            ComboBox1.Text = ReadMemory(Of Integer)(&H144332E38)
            ComboBox2.Text = ReadMemory(Of Integer)(&H14764D1A0)
        End If
I don't know why and how
Thanks a lot for your help
#36 · 12y ago
Jorndel
Jorndel
Quote Originally Posted by KingX735 View Post
Oh, nevermind ! everything is fine

Code:
 If UpdateProcessHandle() Then
            ComboBox1.Text = ReadMemory(Of Integer)(&H144332E38)
            ComboBox2.Text = ReadMemory(Of Integer)(&H14764D1A0)
        End If
I don't know why and how
Thanks a lot for your help
I'm glad you got it working. (Somehow, I've also heard that many times. People calling saying they got a problem. I Desktop-Remote and the problem is gone )

Best of luck, and just ask if there's anything else you would like to know
#37 · 12y ago
LO
Lovroman
Quote Originally Posted by Jorndel View Post


lolz, you do know that would cause a "problem" ?
AKA: You're writing outside the name address. (That should be 15 chars)

Meaning you should do this:
Code:
Dim MyName As String = TextBox1.Text + Space(15 - TextBox1.TextLength)
It's adding space to the string until it's 15 char long

I didn't think about that you have to specify string size when you read from memory(or range or w/e you want to call it )..
Lovro-dumbstick.
#38 · 12y ago
LO
lordxchris
Ok thanks and i tried that pointer code and couldnt get it to work: WriteMemory(Of Integer)(ReadMemory(Of Integer)(&H14765B1D0) + &H10 + &H14, 0) (this is for force host)
#39 · 12y ago
Jorndel
Jorndel
Quote Originally Posted by lordxchris View Post
Ok thanks and i tried that pointer code and couldnt get it to work: WriteMemory(Of Integer)(ReadMemory(Of Integer)(&H14765B1D0) + &H10 + &H14, 0) (this is for force host)
You do know that pointers doesn't work like that? (That's just adding 'offsets' to the address)

Like: 1 + 2 + 3 = 6


If you manage to understand C#:
Code:
Int64 Runner = (Int64)BaseAddress(Module) + Offsets[0];
                    Int64 Picker = (Int64)Read(Runner, typeof(Int64)) + Offsets[1];
                    for (Int64 Path = 2; Path != Offsets.Length; Path++)
                        Picker = (Int64)Read(Picker, typeof(Int64)) + Offsets[Path];
                    return new IntPtr(Picker);
#40 · 12y ago
LO
lordxchris
Can someone help me fix this code im trying to write a pointer with a 10 offset thats a float but idk the code i took a byte pointer and tried to change it to single but it didnt work :C

Dim FOVCalcFound
Dim FOVCalc
FOVCalc = ReadAddress(&H141939D80, 8)
FOVCalcFound = dec2baseN(FOVCalc, 16)
Dim value As Single = Single.Parse(FOVCalcFound, Globalization.NumberStyles.HexNumber)
value += 16
FOVCalcFound = Hex(value)
W4Bytes("&H" + FOVCalcFound, +5)
#41 · 12y ago
LO
Lovroman
Quote Originally Posted by lordxchris View Post
Can someone help me fix this code im trying to write a pointer with a 10 offset thats a float but idk the code i took a byte pointer and tried to change it to single but it didnt work :C

Dim FOVCalcFound
Dim FOVCalc
FOVCalc = ReadAddress(&H141939D80, 8)
FOVCalcFound = dec2baseN(FOVCalc, 16)
Dim value As Single = Single.Parse(FOVCalcFound, Globalization.NumberStyles.HexNumber)
value += 16
FOVCalcFound = Hex(value)
W4Bytes("&H" + FOVCalcFound, +5)
Code:
   WriteMemory(Of Single)(ReadMemory(Of Integer)(&H141939D80) + &H10,  5)
or

Code:
     Dim OldValue = ReadMemory(Of Integer)((ReadMemory(Of Integer)(&H141939D80) + &H10))
        WriteMemory(Of Single)(ReadMemory(Of Integer)(&H141939D80) + &H10, OldValue + 5)
#42 · edited 12y ago · 12y ago
TI
Tiger9620
Can someone tell me how to search for a memory address by its value?

I just don't seem to find anything online.
Thanks.
#43 · 12y ago
LO
Lovroman
Quote Originally Posted by Tiger9620 View Post
Can someone tell me how to search for a memory address by its value?

I just don't seem to find anything online.
Thanks.
Use Cheat Engine(there's plenty of tutorials around net)
#44 · 12y ago
TI
Tiger9620
Quote Originally Posted by Lovroman View Post

Use Cheat Engine(there's plenty of tutorials around net)
I do but I want my program to search for a memory address by its value cause it is a changing address, it is not the same each time I open the game.
#45 · 12y ago
Posts 31–45 of 125 · Page 3 of 9
…

Post a Reply

Similar Threads

  • VB.NET Memory Module (by master131)By master131 in Call of Duty Modern Warfare 3 Coding, Programming & Source Code
    6Last post 13y ago
  • VB.NET Memory Module [by master131] helpBy zxpwds in Call of Duty Modern Warfare 3 Coding, Programming & Source Code
    3Last post 12y ago
  • [VB.NET] Memory Hacking using themaster131 Memory ModuleBy elmasmalo1 in Visual Basic Programming
    0Last post 11y ago
  • [Release] VB.Net Undetected Module Maker by PheNixBy PheNix in Visual Basic Programming
    20Last post 16y ago
  • vb.net (vb2005) module maker or tutorialBy FrancYescO in Visual Basic Programming
    0Last post 18y ago

Tags for this Thread

None