Hi im using Batchh's libspecter, but when i try to inline hook it crashes me. Idk why and iOS Didnt provide crash logs Im jailed too, BRK Hooks work but I need to call orig functions on some methods void *BasicHacks::HacksThread(void *arg) { (void)arg; mem_init("UnityFramework", NULL); uintptr_t unityBase = GetImageBase("UnityFramework"); if (!unityBase) { return nullptr; } uintptr_t recoilAddr = Offsets::Weapon::addRecoil; uint64_t handle; uintptr_t trampoline; mem_hook_install(Offsets::Weapon::addRecoil, (uintptr_t)hook_AddRecoil, &trampoline, &handle); orig_AddRecoil = (AddRecoil_t)trampoline; return nullptr;}@BatchCan you help me out?