Hackers House Last seen recently
Hello, How can we help you?

How to Find Hack Values by Dumping a Game and Make a Script (Full Process)

Topic

How to find any hack values for Game Guardian by dumping a game, and how to make a script from it.

Downloads

Before starting this tutorial, download these four tools:

  1. Game Guardian: https://gameguardian.net/download
  2. IL2CPP Dumper: Telegram link, GitHub alternative, Online Dumper
  3. MT Manager: https://t.me/Hackers_House_YT_chat_group/148659
  4. Field Offset Finder Script: Field Offset Finder

Cheat Finding

After installing all tools, open MT Manager and extract the game you want to hack. The extracted app will be inside MT2 to apks. Open the app, select view, and find libil2cpp.so and metadata.dat. Extract both files.

Open IL2CPP Dumper and select those two files. The dumper will create output in the BC_Il2cppDumper folder. Open dump.cs as text and search class members or fields.

Example: if you want bullet amount, search for keyword bullet. Check values that look like count data and are usually int, float, or double, and ignore unrelated types. After finding a relevant class and field, copy class name and offset.

Open the game with Game Guardian and run the Field Offset Finder script. Provide class name and offset. The script will locate the value. Edit it and verify the in-game value changes.

Script Making

Found value addresses are often dynamic, so direct group search may not work for scripts. The Field Offset Finder script already contains a template mode to help build scripts with the same algorithm.

Open the Field Offset Finder script in a text editor. Find variable userMode near the top and set:

userMode = 2

This activates the script template mode. Then follow the video to set your menu and cheat code.

Notes

  1. Calling valueFromClass() with 5 arguments returns the hack value as search results.

    valueFromClass("PlayerController", "0x148", false, false, gg.TYPE_Dword)

  2. If metadata is not available, this method will not work on that game. Wait for another method/tutorial.
  3. If the value is not found with class name and offset, the script will show 5 solutions. Try those first. If still not solved, share screenshot of the error log.