You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 5, 2026. It is now read-only.
Copy bin/Release/GameStats.dll into <GameDir>/MDB/Mods/.
File Structure
GameStats/
├── GameStats.csproj # Project file
├── GameStatsMod.cs # All code in one file for clarity
└── README.md # This file
Notes
Patch targets in this example (GameManager, Player, NetworkManager) are placeholders. Replace them with actual class/method names from your game's IL2CPP dump.
The [PatchRva(0xDEAD)] is a placeholder RVA. Use the IL2CPP dumper output to find real RVAs.
Manual hooks require the target class to exist at runtime — if the class isn't found, the hook setup is gracefully skipped.