Recent content by jkof

  1. Tutorial [iOS] Using LLDB w/ Watchpoints and a memory editor to find and test offsets! [No IDA]

    @TheArmKing Great tutorial ! I have a question, for example this ARM64 instruction after you changed the ADD to MOV: 0x10471e1c0 <+212>: mov x27, #0xffffff Here, what is '+212' and what does it mean? Does it mean that the instruction is at function offset + 0x212 ?? //POC float SubstractMoney()...
  2. Tutorial DevX Mega Guide (OBB & Bundle Modding + More)

    the curent with the crack 1.09 (DevX 10.06) support wich latest version of Unity ?
  3. Tutorial Manually dump il2cpp on iOS games

    what if CodeRegistration dont show up ?
  4. Help! Non-Jailbroken cheat crashing

    So, basically i need to replace the HOOK part with this : pthread_t scoreThread; pthread_create(&scoreThread, NULL, modifyScore, NULL);
  5. Help! Non-Jailbroken cheat crashing

    Thanks, i will check it out !
  6. Help! Non-Jailbroken cheat crashing

    Its basic hooking void (*old_hitbox)(void* player, void* vec); void new_hitbox(void* player, void* vec){ if([switches isSwitchOn:@"Head Hit"]) { (*(Vector3 *)((uint64_t)vec + 0x24)).x += 9999.0f; } old_hitbox(player, config); } setup() { HOOK(0x1234567, new_hitbox, old_hitbox); }
  7. Help! Non-Jailbroken cheat crashing

    Hello, i've made some searching around google to make a non jailbroken ipa cheat and manage to make one, and it works but only with offset pathing but when hooking the player class to get its health, it's crashing... (working on jailbroken phone) i saw on youtube and on modding website some...
  8. Help! Line on X axis is correct but not on Y axis (ESP)

    Mhhh... im still facing that issue... the X axis doesn't work too. If i do : Position.z > 0, it draw behind the players 🤔
  9. Help! Line on X axis is correct but not on Y axis (ESP)

    Hello, Im trying to make an ESP on iOS, but im facing the issue that the Y axis is not drawing good... I have check this, and tried the suggestion but it didn't work Link To Topic Here is the code (Only useful stuff, i have deleted all the rest): Vector3 PlayerPos = GetPlayerLocation(Player)...
  10. Solved Esp crash when join into battle

    give me yours, i have both
  11. Solved Esp crash when join into battle

    it crash when your update player is called (when player in game) so it might be : - if crashing before enable ESP option : - bad offsets - player hook isn't good - crashing on enable ESP : - drawing is bad - w2s_injected is wrong if you have check...
  12. Dump Standoff 2 C# Source Code

    cool
  13. Tutorial Hooking Tutorial/Template For Ted's Menu Template

    Okay nice have understand, thanksn for the tut