Tool ImGui Il2cpp Tool

Update v0.7

- Fix Patched method didn't save across tabs
- Ability to trace method, displaying their hit count and collect `this` pointer of the method
View attachment 603363
- Fix keyboard crashes in some cases (enable checkbox in settings in case input is not being received)
- Fix new classes tab has no method unless it is filtered first
- Others

NOTE
Another lib is provided where the way input handled is different, fixing some game where it uses unity's new InputSystem, but it comes with other issues.
the folder structure is now like this

Code:
release
    ├── arm64-v8a
    │   ├── libTool_fix_input.so
    │   └── libTool.so
    └── armeabi-v7a
        ├── libTool_fix_input.so
        └── libTool.so

install one only, either libTool.so or libTool_fix_input.so
Great for gui
 
Update v0.8

- Patcher for System.String return type
- Struct will have a gray-ish text color
- Changing field values is now possible within Object Inspector
- Improved Object Selector style
- Others
(gif below...)
View attachment 606141

NOTE
You can install the lib like normal.
if the imgui is not showing, there is a 'classes.dex' file inside the zip file that you can use. you can install it by renaming the classes.dex file , add it to the game apk, and call this in main activity instead of the method mentioned in the main thread, you sitll need to copy the libTool.so
Code:
invoke-static {p0}, Limgui/il2cpp/tool/MainActivity;->startMain(Landroid/content/Context;)V
Great tool for hacking
 
Back
Top Bottom