├── Driver ├── EFI │ └── Boot │ │ └── bootx64.efi └── memory.efi ├── Private Esp ├── EspUI │ ├── 2h5k Box.h │ ├── C_GamefMan.h │ ├── Camera.cpp │ ├── Camera.h │ ├── D3D11Renderer.cpp │ ├── D3D11Renderer.h │ ├── D3D11Shader.h │ ├── Engine.h │ ├── Entity.cpp │ ├── Entity.h │ ├── Features.h │ ├── Fov.h │ ├── Globals.h │ ├── Helper.h │ ├── Hook.cpp │ ├── Hook.h │ ├── Line.cpp │ ├── Menu 2.h │ ├── Menu.cpp │ ├── Menu.h │ ├── Offsets.h │ ├── QAngle.hpp │ ├── Render.h │ ├── SDKMisc.h │ ├── Settings.cpp │ ├── Settings.h │ ├── StateSaver.cpp │ ├── Utils.h │ ├── VMatrix.cpp │ ├── VMatrix.hpp │ ├── ValorantESP.filters │ ├── Vanguard.cpp │ ├── Vector.hpp │ ├── Vector2D.cpp │ ├── Vector2D.hpp │ ├── Vector4D.cpp │ ├── Vector4D.hpp │ ├── Visuals.cpp │ ├── dllmain.cpp │ ├── menu 2.cpp │ ├── nuklear_d3d11.cpp │ └── nuklear_d3d11.h └── imgui │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_impl_dx9.cpp │ ├── imgui_impl_dx9.h │ ├── imgui_impl_glfw.cpp │ ├── imgui_impl_glfw.h │ ├── imgui_impl_opengl3.cpp │ ├── imgui_impl_opengl3.h │ ├── imgui_impl_win32.cpp │ ├── imgui_impl_win32.h │ ├── imgui_internal.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── README.md ├── Valorant Spoofer ├── disk.cpp ├── fnv.hpp ├── gpu.hpp ├── hwid_spoofer.vcxproj.filters ├── hwid_spoofer.vcxproj.user ├── log.hpp ├── main.cpp ├── pattern.cpp ├── pattern.hpp ├── raid_extension.hpp └── util.hpp └── Valorant-Aimbot └── AIMBOT ├── -Module-.cs ├── Aimbot C#.cs ├── HookRender ├── CheatSDK.h └── Hooks │ ├── ClientMode.h │ ├── DirectX.h │ ├── GameMovement.h │ ├── Runpe.h │ └── main.cpp ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resources ├── OverlayForm.Designer.cs ├── OverlayForm.resources ├── ProcessedByFody.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.cs ├── Resources.resources ├── Settings.Designer.cs └── Settings.settings ├── SplashScreen.Designer.cs ├── SplashScreen.cs └── SplashScreen.resources /Driver/EFI/Boot/bootx64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Driver/EFI/Boot/bootx64.efi -------------------------------------------------------------------------------- /Driver/memory.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Driver/memory.efi -------------------------------------------------------------------------------- /Private Esp/EspUI/2h5k Box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/2h5k Box.h -------------------------------------------------------------------------------- /Private Esp/EspUI/C_GamefMan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/C_GamefMan.h -------------------------------------------------------------------------------- /Private Esp/EspUI/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Camera.cpp -------------------------------------------------------------------------------- /Private Esp/EspUI/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Camera.h -------------------------------------------------------------------------------- /Private Esp/EspUI/D3D11Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/D3D11Renderer.cpp -------------------------------------------------------------------------------- /Private Esp/EspUI/D3D11Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/D3D11Renderer.h -------------------------------------------------------------------------------- /Private Esp/EspUI/D3D11Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/D3D11Shader.h -------------------------------------------------------------------------------- /Private Esp/EspUI/Engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Engine.h -------------------------------------------------------------------------------- /Private Esp/EspUI/Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Entity.cpp -------------------------------------------------------------------------------- /Private Esp/EspUI/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Entity.h -------------------------------------------------------------------------------- /Private Esp/EspUI/Features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Features.h -------------------------------------------------------------------------------- /Private Esp/EspUI/Fov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Fov.h -------------------------------------------------------------------------------- /Private Esp/EspUI/Globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Globals.h -------------------------------------------------------------------------------- /Private Esp/EspUI/Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Helper.h -------------------------------------------------------------------------------- /Private Esp/EspUI/Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Hook.cpp -------------------------------------------------------------------------------- /Private Esp/EspUI/Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Hook.h -------------------------------------------------------------------------------- /Private Esp/EspUI/Line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Line.cpp -------------------------------------------------------------------------------- /Private Esp/EspUI/Menu 2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Menu 2.h -------------------------------------------------------------------------------- /Private Esp/EspUI/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Menu.cpp -------------------------------------------------------------------------------- /Private Esp/EspUI/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Menu.h -------------------------------------------------------------------------------- /Private Esp/EspUI/Offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Offsets.h -------------------------------------------------------------------------------- /Private Esp/EspUI/QAngle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/QAngle.hpp -------------------------------------------------------------------------------- /Private Esp/EspUI/Render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Render.h -------------------------------------------------------------------------------- /Private Esp/EspUI/SDKMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/SDKMisc.h -------------------------------------------------------------------------------- /Private Esp/EspUI/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Settings.cpp -------------------------------------------------------------------------------- /Private Esp/EspUI/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Settings.h -------------------------------------------------------------------------------- /Private Esp/EspUI/StateSaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/StateSaver.cpp -------------------------------------------------------------------------------- /Private Esp/EspUI/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Utils.h -------------------------------------------------------------------------------- /Private Esp/EspUI/VMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/VMatrix.cpp -------------------------------------------------------------------------------- /Private Esp/EspUI/VMatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/VMatrix.hpp -------------------------------------------------------------------------------- /Private Esp/EspUI/ValorantESP.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/ValorantESP.filters -------------------------------------------------------------------------------- /Private Esp/EspUI/Vanguard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Vanguard.cpp -------------------------------------------------------------------------------- /Private Esp/EspUI/Vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Vector.hpp -------------------------------------------------------------------------------- /Private Esp/EspUI/Vector2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Vector2D.cpp -------------------------------------------------------------------------------- /Private Esp/EspUI/Vector2D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Vector2D.hpp -------------------------------------------------------------------------------- /Private Esp/EspUI/Vector4D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Vector4D.cpp -------------------------------------------------------------------------------- /Private Esp/EspUI/Vector4D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Vector4D.hpp -------------------------------------------------------------------------------- /Private Esp/EspUI/Visuals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/Visuals.cpp -------------------------------------------------------------------------------- /Private Esp/EspUI/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/dllmain.cpp -------------------------------------------------------------------------------- /Private Esp/EspUI/menu 2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/menu 2.cpp -------------------------------------------------------------------------------- /Private Esp/EspUI/nuklear_d3d11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/nuklear_d3d11.cpp -------------------------------------------------------------------------------- /Private Esp/EspUI/nuklear_d3d11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/EspUI/nuklear_d3d11.h -------------------------------------------------------------------------------- /Private Esp/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/imgui/imconfig.h -------------------------------------------------------------------------------- /Private Esp/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/imgui/imgui.cpp -------------------------------------------------------------------------------- /Private Esp/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/imgui/imgui.h -------------------------------------------------------------------------------- /Private Esp/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /Private Esp/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /Private Esp/imgui/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/imgui/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /Private Esp/imgui/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/imgui/imgui_impl_dx9.h -------------------------------------------------------------------------------- /Private Esp/imgui/imgui_impl_glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/imgui/imgui_impl_glfw.cpp -------------------------------------------------------------------------------- /Private Esp/imgui/imgui_impl_glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/imgui/imgui_impl_glfw.h -------------------------------------------------------------------------------- /Private Esp/imgui/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/imgui/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /Private Esp/imgui/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/imgui/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /Private Esp/imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /Private Esp/imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /Private Esp/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/imgui/imgui_internal.h -------------------------------------------------------------------------------- /Private Esp/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /Private Esp/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /Private Esp/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /Private Esp/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /Private Esp/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Private Esp/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/README.md -------------------------------------------------------------------------------- /Valorant Spoofer/disk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant Spoofer/disk.cpp -------------------------------------------------------------------------------- /Valorant Spoofer/fnv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant Spoofer/fnv.hpp -------------------------------------------------------------------------------- /Valorant Spoofer/gpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant Spoofer/gpu.hpp -------------------------------------------------------------------------------- /Valorant Spoofer/hwid_spoofer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant Spoofer/hwid_spoofer.vcxproj.filters -------------------------------------------------------------------------------- /Valorant Spoofer/hwid_spoofer.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant Spoofer/hwid_spoofer.vcxproj.user -------------------------------------------------------------------------------- /Valorant Spoofer/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant Spoofer/log.hpp -------------------------------------------------------------------------------- /Valorant Spoofer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant Spoofer/main.cpp -------------------------------------------------------------------------------- /Valorant Spoofer/pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant Spoofer/pattern.cpp -------------------------------------------------------------------------------- /Valorant Spoofer/pattern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant Spoofer/pattern.hpp -------------------------------------------------------------------------------- /Valorant Spoofer/raid_extension.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant Spoofer/raid_extension.hpp -------------------------------------------------------------------------------- /Valorant Spoofer/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant Spoofer/util.hpp -------------------------------------------------------------------------------- /Valorant-Aimbot/AIMBOT/-Module-.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant-Aimbot/AIMBOT/-Module-.cs -------------------------------------------------------------------------------- /Valorant-Aimbot/AIMBOT/Aimbot C#.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant-Aimbot/AIMBOT/Aimbot C#.cs -------------------------------------------------------------------------------- /Valorant-Aimbot/AIMBOT/HookRender/CheatSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant-Aimbot/AIMBOT/HookRender/CheatSDK.h -------------------------------------------------------------------------------- /Valorant-Aimbot/AIMBOT/HookRender/Hooks/ClientMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant-Aimbot/AIMBOT/HookRender/Hooks/ClientMode.h -------------------------------------------------------------------------------- /Valorant-Aimbot/AIMBOT/HookRender/Hooks/DirectX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant-Aimbot/AIMBOT/HookRender/Hooks/DirectX.h -------------------------------------------------------------------------------- /Valorant-Aimbot/AIMBOT/HookRender/Hooks/GameMovement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant-Aimbot/AIMBOT/HookRender/Hooks/GameMovement.h -------------------------------------------------------------------------------- /Valorant-Aimbot/AIMBOT/HookRender/Hooks/Runpe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant-Aimbot/AIMBOT/HookRender/Hooks/Runpe.h -------------------------------------------------------------------------------- /Valorant-Aimbot/AIMBOT/HookRender/Hooks/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant-Aimbot/AIMBOT/HookRender/Hooks/main.cpp -------------------------------------------------------------------------------- /Valorant-Aimbot/AIMBOT/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant-Aimbot/AIMBOT/MainForm.Designer.cs -------------------------------------------------------------------------------- /Valorant-Aimbot/AIMBOT/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant-Aimbot/AIMBOT/MainForm.cs -------------------------------------------------------------------------------- /Valorant-Aimbot/AIMBOT/MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant-Aimbot/AIMBOT/MainForm.resources -------------------------------------------------------------------------------- /Valorant-Aimbot/AIMBOT/OverlayForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant-Aimbot/AIMBOT/OverlayForm.Designer.cs -------------------------------------------------------------------------------- /Valorant-Aimbot/AIMBOT/OverlayForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant-Aimbot/AIMBOT/OverlayForm.resources -------------------------------------------------------------------------------- /Valorant-Aimbot/AIMBOT/ProcessedByFody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant-Aimbot/AIMBOT/ProcessedByFody.cs -------------------------------------------------------------------------------- /Valorant-Aimbot/AIMBOT/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant-Aimbot/AIMBOT/Program.cs -------------------------------------------------------------------------------- /Valorant-Aimbot/AIMBOT/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant-Aimbot/AIMBOT/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Valorant-Aimbot/AIMBOT/Properties/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant-Aimbot/AIMBOT/Properties/Resources.cs -------------------------------------------------------------------------------- /Valorant-Aimbot/AIMBOT/Properties/Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant-Aimbot/AIMBOT/Properties/Resources.resources -------------------------------------------------------------------------------- /Valorant-Aimbot/AIMBOT/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant-Aimbot/AIMBOT/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Valorant-Aimbot/AIMBOT/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant-Aimbot/AIMBOT/Properties/Settings.settings -------------------------------------------------------------------------------- /Valorant-Aimbot/AIMBOT/SplashScreen.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant-Aimbot/AIMBOT/SplashScreen.Designer.cs -------------------------------------------------------------------------------- /Valorant-Aimbot/AIMBOT/SplashScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant-Aimbot/AIMBOT/SplashScreen.cs -------------------------------------------------------------------------------- /Valorant-Aimbot/AIMBOT/SplashScreen.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterDev-Student/Valorant-Cheat-External/HEAD/Valorant-Aimbot/AIMBOT/SplashScreen.resources --------------------------------------------------------------------------------