MindControl.Code
1.0.0
dotnet add package MindControl.Code --version 1.0.0
NuGet\Install-Package MindControl.Code -Version 1.0.0
<PackageReference Include="MindControl.Code" Version="1.0.0" />
<PackageVersion Include="MindControl.Code" Version="1.0.0" />
<PackageReference Include="MindControl.Code" />
paket add MindControl.Code --version 1.0.0
#r "nuget: MindControl.Code, 1.0.0"
#addin nuget:?package=MindControl.Code&version=1.0.0
#tool nuget:?package=MindControl.Code&version=1.0.0
MindControl.Code
MindControl is a .net hacking library for Windows that allows you to manipulate a game or any other process and its internal memory.
This library is an extension of the main MindControl package, adding features related to code manipulation.
DO NOT use this library to cheat in online competitive games. Cheaters ruins the fun for everyone. If you ignore this warning, I will do my best to shut down your project.
Getting started
Here is a quick example to get you started.
var myGame = ProcessMemory.OpenProcess("mygame").Result; // A process with this name must be running
// Write some assembly code, for example with Iced.Intel (a byte[] also works)
var assembler = new Assembler(64);
assembler.mov(rcx, value);
// ...
// Insert the code at the address "mygame.exe+0168EEA0"
CodeChange codeInjection = processMemory.InsertCodeAt("mygame.exe+0168EEA0", assembler).Value;
// Original code is untouched, your code will be executed right before the instruction at that address (through a hook).
// Disposing the CodeChange object restores the original code
codeInjection.Dispose();
// Check out the docs for more features!
See the documentation to get started, whether you already dabble in memory hacking or are completely new to it.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net8.0
- Iced (>= 1.21.0)
- MindControl (>= 1.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 58 | 6/7/2025 |
1.0.0-alpha-25060601 | 53 | 6/7/2025 |