Skip to content

loxchmorez/ImGUI-iOS

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HuyJIT-ModMenu

Huy JIT Mod Menu is a template menu for iOS that supported patching offsets/hexes for rootful only (maybe JIT/NonJB support soon)!

Preview of the menu

About

  • I'm using KittyMemory to patch the offsets/hexes
  • Kopycat some code from joeyjurjens
  • Also bring encryption from joeyjurjens template too
  • Hook by MSHookFunction (maybe NonJB hooks later)

Installation

  • Using theos for compilation
  • Add THEOS_PACKAGE_SCHEME = rootless to support Dopamine if you want

Feature

  • On/Off switch for patching offsets
  • Support Hooking (by MobileSubstrate)

Usage

3 fingers double tap to screen to open menu

Editing these in Draw.mm

  • Patching offset on UnityFramework
patchOffset(ENCRYPTOFFSET("0x123F456"), ENCRYPTHEX("0xC0035FD6"));

You can change this to anything you want to patch on the line where I noted in Utils/Wrapper.h. Normally it's UnityFramework but some games like LoL WildRift is FEProj

  • Hooking a static address (both NULL and UnityFramework)
void (*inst)(void *instance);
void _inst(void *instance){
    inst(instance);
}

OrigHook(ENCRYPTOFFSET("0x123F456), _inst, inst)
  • Font using for this menu is Honkai Star Rail font (English only)

Pull request button is on the top, you can contribute to this project if you want

Credits

About

Huy JIT Mod Menu is a template menu for iOS that supported patching offsets/hexes for Non-jailbreak with JIT and fix patch for Dopamine jailbreak using IMGUI

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • C++ 87.6%
  • C 10.8%
  • Objective-C++ 1.2%
  • Other 0.4%