Search results

  1. Help! Field Offset

    private Quaternion CurrentViewPos; // 0x80 Some people know how to update this offset field?All Fields update even including Fields with vector3 Less is with Quaternion
  2. Help! Does anyone know why my hook doesn't work?

    Can anyone tell me what I did wrong? bool AddLevel void (*uplevel)(void *instance, int value); void (*old_levelup)(void *instance); void levelup(void *instance) { if (instance != NULL) { if (AddLevel) { uplevel(instance, 1); } } old_levelup(instance); } uplevel = (void(*)(void...
  3. Help! Android 12 and 11

    mod menu does not open on Android 11 and Android 12.(lgl MOD menu 2.9)
  4. Help! public void .ctor can be used as update method?

    public void .ctor Can be used as update method for hook field? public float maxFallSpeed; // 0x24 // Methods // RVA: 0x46E418 Offset: 0x46E418 VA: 0x46E418 public void .ctor() { } }
  5. Solved How can I add image in mod menu background (2.9)

    I've made several attempts but the image always doesn't appear and the menu is transparent, if anyone can help me, I'd appreciate it
  6. Help! DUMP MINECRAFT PE

    Helpls, how to dump Minecraft pe
  7. Solved DUMP Minecraft pe

    Helpls, how to dump Minecraft pe
  8. Solved Help

    why doesn't the value go back to original when the slide is at 0? float Jump = 4.5; float (*old_jump)(void *instance); float jump(void *instance) { if (instance != NULL && Jump) { return (float) Jump; } return Jump(instance); } HOOK("0x46D7DC", jump, old_jump)...
  9. Solved Hook void

    how c Does anyone know how I can use this code? / /RVA: 0x333BB8 Offset: 0x333BB8 VA: 0x333BB8 public void set_maxPlayers(int value) { } The class has no update code(I'm a beginner)