-
Posts
1,810 -
Joined
-
Last visited
Community Answers
-
Batch's post in Libspecter's inline hooking crashing was marked as the answer
https://github.com/Batchhh/libspecter/releases/tag/v1.0.6 Download latest and then you can do something like:
using AddRecoil_t = void (*)(void *self, float amount); static uint64_t g_addRecoilBrk = 0; static AddRecoil_t orig_AddRecoil = nullptr; void hook_AddRecoil(void *self, float amount) { if (orig_AddRecoil) { CHECK(mem_brk_suspend_self()); orig_AddRecoil(self, amount); CHECK(mem_brk_resume_self()); } } void install() { CHECK(mem_init("UnityFramework", nullptr)); CHECK(mem_brk_install(0x123, reinterpret_cast<uintptr_t>(hook_AddRecoil), &g_addRecoilBrk)); uintptr_t absolute = 0; CHECK(mem_brk_target(g_addRecoilBrk, &absolute)); orig_AddRecoil = reinterpret_cast<AddRecoil_t>(absolute); }
-
Batch's post in Newest igg messed up iPads was marked as the answer
This has been fixed, now waiting Rook to come up online and update!
Is this related to IGG? or is it a problem with sideloadly? Can't understand
-
Batch's post in lldb problem: terminals database is inaccessible was marked as the answer
Soultion found: Pc Terminal issue
-
Batch's post in Hook for rootless jailbreak was marked as the answer
Yes it's possibile, make sure that you're ellekit package is updated to the last version. If it dosn't work either look into my mod menu template, there's an alternative way to hook
-
Batch's post in Obscured Types: How do i manage to edit? was marked as the answer
Solved on my owm, im kinda dumb...