MindControl 1.0.0

dotnet add package MindControl --version 1.0.0
                    
NuGet\Install-Package MindControl -Version 1.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MindControl" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MindControl" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="MindControl" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MindControl --version 1.0.0
                    
#r "nuget: MindControl, 1.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=MindControl&version=1.0.0
                    
Install MindControl as a Cake Addin
#tool nuget:?package=MindControl&version=1.0.0
                    
Install MindControl as a Cake Tool

MindControl

MindControl is a .net hacking library for Windows that allows you to manipulate a game or any other process and its internal memory.

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
var hpAddress = new PointerPath("mygame.exe+1D005A70,1C,8"); // See the docs for how to determine these

// Read values
var currentHp = myGame.Read<int>(hpAddress);
Console.WriteLine($"You have {currentHp}HP"); // Example output: "You have 50HP"

// Write values
myGame.Write(hpAddress, 9999);

// Find the first occurrence of a pattern in memory, with wildcard bytes
UIntPtr targetAddress = myGame.FindBytes("4D 79 ?? ?? ?? ?? ?? ?? 56 61 6C 75 65")
    .FirstOrDefault();

// ... And many more features

See the documentation to get started, whether you already dabble in memory hacking or are completely new to it.

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on MindControl:

Package Downloads
MindControl.Code

An extension library for MindControl that gives access to advanced code-related features like hooks.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0 76 6/7/2025
1.0.0-alpha-25060601 64 6/7/2025
1.0.0-alpha-25053101 62 6/6/2025
1.0.0-alpha-25032201 71 3/22/2025
1.0.0-alpha-25031501 66 3/15/2025
0.5.1 195 4/6/2024
0.5.0 117 4/6/2024
0.4.0 160 3/30/2024
0.3.4 304 10/20/2023
0.3.3 194 8/25/2023
0.3.2 170 8/24/2023
0.3.1 190 8/24/2023
0.3.0 197 8/15/2023
0.2.0 191 8/13/2023
0.1.0 203 8/5/2023