MindControl 1.0.0-alpha-25053101

This is a prerelease version of MindControl.
There is a newer version of this package available.
See the version list below for details.
dotnet add package MindControl --version 1.0.0-alpha-25053101
                    
NuGet\Install-Package MindControl -Version 1.0.0-alpha-25053101
                    
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-alpha-25053101" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MindControl" Version="1.0.0-alpha-25053101" />
                    
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-alpha-25053101
                    
#r "nuget: MindControl, 1.0.0-alpha-25053101"
                    
#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.
#:package MindControl@1.0.0-alpha-25053101
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=MindControl&version=1.0.0-alpha-25053101&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=MindControl&version=1.0.0-alpha-25053101&prerelease
                    
Install 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"); // 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
int currentHp = myGame.ReadInt(hpAddress);
Console.WriteLine($"You have {currentHp}HP"); // Example output: "You have 50HP"

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

See the full documentation on GitHub for more info.

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 96 6/7/2025
1.0.0-alpha-25060601 75 6/7/2025
1.0.0-alpha-25053101 70 6/6/2025
1.0.0-alpha-25032201 86 3/22/2025
1.0.0-alpha-25031501 77 3/15/2025
0.5.1 207 4/6/2024
0.5.0 125 4/6/2024
0.4.0 169 3/30/2024
0.3.4 322 10/20/2023
0.3.3 207 8/25/2023
0.3.2 189 8/24/2023
0.3.1 203 8/24/2023
0.3.0 212 8/15/2023
0.2.0 207 8/13/2023
0.1.0 224 8/5/2023