Open-source minecraft simple ESP created with OpenGL and Detours library.
Minecraft uses OpenGL to render objects. Function glTranslatef and glScalef always calls with specific parameters before object will be rendered.
Using function interceptors (hooks) we can catch function call and modify it's behaviour (logic and input arguments).
Then filtering objects by function input parameters we can identify objects and save it's info into list, after all of this we can call OpenGL functions to render ESP-box above the object.
- Download this repository
- Run
zig buildin root repository folder
- Dowload and open dll-injector
- Find minecraft process and attach to it
- Inject
esp.dllinto game process
Tested on x64 windows 10, 11
Tested minecraft versions: 1.6.4, 1.7.10, 1.8.8
Zig version: 0.12.0-dev.706+62a0fbdae
P.S. WORKS ONLY IN x64 MODE.
Enspired by: https://github.com/Aurenex/Simple-ESP

