Search results

  1. Help! mod menu with invincibility on 2 sides.

    Sim, eu entendi se quiser ajuda chama no Telegram @DarkModdingYT
  2. Help! mod menu with invincibility on 2 sides.

    Mano, é muito mais complexo fazer isso.. já vou lhe avisando que usando hexpatch tu não vai conseguir
  3. Help! Field Offset

    The quarternion was "configured" to pass the coordinates
  4. Help! Field Offset

    Did not work
  5. Help! Field Offset

    It's a quarternion that calculates the player closest to mine within a viewing angle, I won't paste the code here because it's too big
  6. Help! Field Offset

    Is there something wrong with this hooking? if (AutoAim) { *(Quaternion*) ((uint32_t) player + 0x80) = TargetPlayer; }
  7. Help! Field Offset

    I want to edit this field, I did the hooking and everything but it's not working. But other Fields of this same class like private float m_Speed; // 0x1C Works normally
  8. 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
  9. 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...
  10. Help! Android 12 and 11

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

    I tried it but it didn't work, I don't know if I did something wrong
  12. 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() { } }
  13. 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
  14. Help! DUMP MINECRAFT PE

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

    Helpls, how to dump Minecraft pe
  16. Solved Help

    I've tried this but it doesn't return to the initial value, the value goes to 0...
  17. Solved Help

    Jump = 4.5;...but ok, please help me... how do I make when the slide bar (seekbar) is at 0 be modified to a specific value? example sildebar(seekbar) 0 = value is 4.5f.. PLEASE HELP ME
  18. Solved Help

    Did not work
  19. 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)...
  20. 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)