├── README.md ├── ValorantESP ├── Aimbot.cpp ├── C_GameMan.h ├── Camera.cpp ├── Camera.h ├── D3D11Renderer.cpp ├── D3D11Renderer.h ├── D3D11Shader.h ├── D3D11StateSaver.cpp ├── D3D11StateSaver.h ├── Engine.cpp ├── Engine.h ├── Entity.cpp ├── Entity.h ├── Features.h ├── Globals.h ├── Helper.h ├── Hook.cpp ├── Hook.h ├── Init.cpp ├── Menu.cpp ├── Menu.h ├── Offsets.h ├── QAngle.hpp ├── SDKMisc.h ├── Settings.cpp ├── Settings.h ├── Utils.h ├── VMatrix.cpp ├── VMatrix.hpp ├── ValorantESP.filters ├── ValorantESP.sln ├── ValorantESP.vcxproj ├── ValorantESP.vcxproj.user ├── Vector.hpp ├── Vector2D.cpp ├── Vector2D.hpp ├── Vector4D.cpp ├── Vector4D.hpp ├── Visuals.cpp ├── dllmain.cpp ├── nuklear.cpp ├── nuklear.h ├── nuklear_d3d11.cpp ├── nuklear_d3d11.h ├── nuklear_d3d11.hlsi ├── nuklear_d3d11.hlsl ├── nuklear_d3d11_pixel_shader.h └── nuklear_d3d11_vertex_shader.h └── ValorantKernelDriver ├── Clean.c ├── Clean.h ├── Dependencies.h ├── Helpers.h ├── Main.c ├── Memory.c ├── Memory.h ├── ValorantKernelDriver.filters ├── ValorantKernelDriver.inf ├── ValorantKernelDriver.sln └── ValorantKernelDriver.vcxproj /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/README.md -------------------------------------------------------------------------------- /ValorantESP/Aimbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/Aimbot.cpp -------------------------------------------------------------------------------- /ValorantESP/C_GameMan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/C_GameMan.h -------------------------------------------------------------------------------- /ValorantESP/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/Camera.cpp -------------------------------------------------------------------------------- /ValorantESP/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/Camera.h -------------------------------------------------------------------------------- /ValorantESP/D3D11Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/D3D11Renderer.cpp -------------------------------------------------------------------------------- /ValorantESP/D3D11Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/D3D11Renderer.h -------------------------------------------------------------------------------- /ValorantESP/D3D11Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/D3D11Shader.h -------------------------------------------------------------------------------- /ValorantESP/D3D11StateSaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/D3D11StateSaver.cpp -------------------------------------------------------------------------------- /ValorantESP/D3D11StateSaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/D3D11StateSaver.h -------------------------------------------------------------------------------- /ValorantESP/Engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/Engine.cpp -------------------------------------------------------------------------------- /ValorantESP/Engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/Engine.h -------------------------------------------------------------------------------- /ValorantESP/Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/Entity.cpp -------------------------------------------------------------------------------- /ValorantESP/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/Entity.h -------------------------------------------------------------------------------- /ValorantESP/Features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/Features.h -------------------------------------------------------------------------------- /ValorantESP/Globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/Globals.h -------------------------------------------------------------------------------- /ValorantESP/Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/Helper.h -------------------------------------------------------------------------------- /ValorantESP/Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/Hook.cpp -------------------------------------------------------------------------------- /ValorantESP/Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/Hook.h -------------------------------------------------------------------------------- /ValorantESP/Init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/Init.cpp -------------------------------------------------------------------------------- /ValorantESP/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/Menu.cpp -------------------------------------------------------------------------------- /ValorantESP/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/Menu.h -------------------------------------------------------------------------------- /ValorantESP/Offsets.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /ValorantESP/QAngle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/QAngle.hpp -------------------------------------------------------------------------------- /ValorantESP/SDKMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/SDKMisc.h -------------------------------------------------------------------------------- /ValorantESP/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/Settings.cpp -------------------------------------------------------------------------------- /ValorantESP/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/Settings.h -------------------------------------------------------------------------------- /ValorantESP/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/Utils.h -------------------------------------------------------------------------------- /ValorantESP/VMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/VMatrix.cpp -------------------------------------------------------------------------------- /ValorantESP/VMatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/VMatrix.hpp -------------------------------------------------------------------------------- /ValorantESP/ValorantESP.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/ValorantESP.filters -------------------------------------------------------------------------------- /ValorantESP/ValorantESP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/ValorantESP.sln -------------------------------------------------------------------------------- /ValorantESP/ValorantESP.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/ValorantESP.vcxproj -------------------------------------------------------------------------------- /ValorantESP/ValorantESP.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/ValorantESP.vcxproj.user -------------------------------------------------------------------------------- /ValorantESP/Vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/Vector.hpp -------------------------------------------------------------------------------- /ValorantESP/Vector2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/Vector2D.cpp -------------------------------------------------------------------------------- /ValorantESP/Vector2D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/Vector2D.hpp -------------------------------------------------------------------------------- /ValorantESP/Vector4D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/Vector4D.cpp -------------------------------------------------------------------------------- /ValorantESP/Vector4D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/Vector4D.hpp -------------------------------------------------------------------------------- /ValorantESP/Visuals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/Visuals.cpp -------------------------------------------------------------------------------- /ValorantESP/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/dllmain.cpp -------------------------------------------------------------------------------- /ValorantESP/nuklear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/nuklear.cpp -------------------------------------------------------------------------------- /ValorantESP/nuklear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/nuklear.h -------------------------------------------------------------------------------- /ValorantESP/nuklear_d3d11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/nuklear_d3d11.cpp -------------------------------------------------------------------------------- /ValorantESP/nuklear_d3d11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/nuklear_d3d11.h -------------------------------------------------------------------------------- /ValorantESP/nuklear_d3d11.hlsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/nuklear_d3d11.hlsi -------------------------------------------------------------------------------- /ValorantESP/nuklear_d3d11.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/nuklear_d3d11.hlsl -------------------------------------------------------------------------------- /ValorantESP/nuklear_d3d11_pixel_shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/nuklear_d3d11_pixel_shader.h -------------------------------------------------------------------------------- /ValorantESP/nuklear_d3d11_vertex_shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantESP/nuklear_d3d11_vertex_shader.h -------------------------------------------------------------------------------- /ValorantKernelDriver/Clean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantKernelDriver/Clean.c -------------------------------------------------------------------------------- /ValorantKernelDriver/Clean.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | 4 | NTSTATUS CleanPiDDB(); -------------------------------------------------------------------------------- /ValorantKernelDriver/Dependencies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantKernelDriver/Dependencies.h -------------------------------------------------------------------------------- /ValorantKernelDriver/Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantKernelDriver/Helpers.h -------------------------------------------------------------------------------- /ValorantKernelDriver/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantKernelDriver/Main.c -------------------------------------------------------------------------------- /ValorantKernelDriver/Memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantKernelDriver/Memory.c -------------------------------------------------------------------------------- /ValorantKernelDriver/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantKernelDriver/Memory.h -------------------------------------------------------------------------------- /ValorantKernelDriver/ValorantKernelDriver.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantKernelDriver/ValorantKernelDriver.filters -------------------------------------------------------------------------------- /ValorantKernelDriver/ValorantKernelDriver.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantKernelDriver/ValorantKernelDriver.inf -------------------------------------------------------------------------------- /ValorantKernelDriver/ValorantKernelDriver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantKernelDriver/ValorantKernelDriver.sln -------------------------------------------------------------------------------- /ValorantKernelDriver/ValorantKernelDriver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MauhTon/valorant-esp-hack-with-driver/HEAD/ValorantKernelDriver/ValorantKernelDriver.vcxproj --------------------------------------------------------------------------------