├── .github └── workflows │ └── cs2_msbuild.yml ├── .gitignore ├── CHANGELOG.txt ├── CS2CheatCpp.sln ├── CS2CheatCpp ├── CS2CheatCpp.rc ├── CS2CheatCpp.vcxproj ├── CS2CheatCpp.vcxproj.filters ├── CS2CheatCpp.vcxproj.user ├── CS2CheatCpp1.rc ├── CS2_Cheat_Log.txt ├── Debug │ ├── CS2CheatCpp.exe.recipe │ ├── CS2CheatCpp.ilk │ ├── CS2CheatCpp.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── CS2CheatCpp.lastbuildstate │ │ ├── Cl.items.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── rc.command.1.tlog │ │ ├── rc.read.1.tlog │ │ └── rc.write.1.tlog │ ├── CS2CheatCpp1.res │ ├── vc143.idb │ └── vc143.pdb ├── RCa00308 ├── RCa08932 ├── RCa25256 ├── RCb00308 ├── RCb08932 ├── RCb25256 ├── RCc25256 ├── SDK │ ├── buttons.hpp │ ├── client.dll.hpp │ └── offsets.hpp ├── assets │ └── logo.ico ├── dependencies │ └── ImGui │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_impl_dx11.cpp │ │ ├── imgui_impl_dx11.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 ├── imgui.ini ├── resource.h ├── resource1.h └── src │ ├── bone.hpp │ ├── entity.h │ ├── gui.cpp │ ├── gui.h │ ├── main.cpp │ ├── memory │ ├── handle_hijack.h │ ├── memory.cpp │ └── memory.h │ ├── render.h │ ├── vector.h │ └── weapon.hpp ├── Debug ├── CS2CheatCpp.pdb └── CS2_Cheat_Log.txt ├── LICENSE ├── README.md ├── external.png └── wechat.jpg /.github/workflows/cs2_msbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/.github/workflows/cs2_msbuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /CS2CheatCpp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp.sln -------------------------------------------------------------------------------- /CS2CheatCpp/CS2CheatCpp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/CS2CheatCpp.rc -------------------------------------------------------------------------------- /CS2CheatCpp/CS2CheatCpp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/CS2CheatCpp.vcxproj -------------------------------------------------------------------------------- /CS2CheatCpp/CS2CheatCpp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/CS2CheatCpp.vcxproj.filters -------------------------------------------------------------------------------- /CS2CheatCpp/CS2CheatCpp.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/CS2CheatCpp.vcxproj.user -------------------------------------------------------------------------------- /CS2CheatCpp/CS2CheatCpp1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/CS2CheatCpp1.rc -------------------------------------------------------------------------------- /CS2CheatCpp/CS2_Cheat_Log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/CS2_Cheat_Log.txt -------------------------------------------------------------------------------- /CS2CheatCpp/Debug/CS2CheatCpp.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/Debug/CS2CheatCpp.exe.recipe -------------------------------------------------------------------------------- /CS2CheatCpp/Debug/CS2CheatCpp.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/Debug/CS2CheatCpp.ilk -------------------------------------------------------------------------------- /CS2CheatCpp/Debug/CS2CheatCpp.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/Debug/CS2CheatCpp.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /CS2CheatCpp/Debug/CS2CheatCpp.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/Debug/CS2CheatCpp.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /CS2CheatCpp/Debug/CS2CheatCpp.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/Debug/CS2CheatCpp.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /CS2CheatCpp/Debug/CS2CheatCpp.tlog/CS2CheatCpp.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/Debug/CS2CheatCpp.tlog/CS2CheatCpp.lastbuildstate -------------------------------------------------------------------------------- /CS2CheatCpp/Debug/CS2CheatCpp.tlog/Cl.items.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/Debug/CS2CheatCpp.tlog/Cl.items.tlog -------------------------------------------------------------------------------- /CS2CheatCpp/Debug/CS2CheatCpp.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/Debug/CS2CheatCpp.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /CS2CheatCpp/Debug/CS2CheatCpp.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/Debug/CS2CheatCpp.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /CS2CheatCpp/Debug/CS2CheatCpp.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/Debug/CS2CheatCpp.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /CS2CheatCpp/Debug/CS2CheatCpp.tlog/rc.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/Debug/CS2CheatCpp.tlog/rc.command.1.tlog -------------------------------------------------------------------------------- /CS2CheatCpp/Debug/CS2CheatCpp.tlog/rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/Debug/CS2CheatCpp.tlog/rc.read.1.tlog -------------------------------------------------------------------------------- /CS2CheatCpp/Debug/CS2CheatCpp.tlog/rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/Debug/CS2CheatCpp.tlog/rc.write.1.tlog -------------------------------------------------------------------------------- /CS2CheatCpp/Debug/CS2CheatCpp1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/Debug/CS2CheatCpp1.res -------------------------------------------------------------------------------- /CS2CheatCpp/Debug/vc143.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/Debug/vc143.idb -------------------------------------------------------------------------------- /CS2CheatCpp/Debug/vc143.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/Debug/vc143.pdb -------------------------------------------------------------------------------- /CS2CheatCpp/RCa00308: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/RCa00308 -------------------------------------------------------------------------------- /CS2CheatCpp/RCa08932: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/RCa08932 -------------------------------------------------------------------------------- /CS2CheatCpp/RCa25256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/RCa25256 -------------------------------------------------------------------------------- /CS2CheatCpp/RCb00308: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/RCb00308 -------------------------------------------------------------------------------- /CS2CheatCpp/RCb08932: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/RCb08932 -------------------------------------------------------------------------------- /CS2CheatCpp/RCb25256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/RCb25256 -------------------------------------------------------------------------------- /CS2CheatCpp/RCc25256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/RCc25256 -------------------------------------------------------------------------------- /CS2CheatCpp/SDK/buttons.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/SDK/buttons.hpp -------------------------------------------------------------------------------- /CS2CheatCpp/SDK/client.dll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/SDK/client.dll.hpp -------------------------------------------------------------------------------- /CS2CheatCpp/SDK/offsets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/SDK/offsets.hpp -------------------------------------------------------------------------------- /CS2CheatCpp/assets/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/assets/logo.ico -------------------------------------------------------------------------------- /CS2CheatCpp/dependencies/ImGui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/dependencies/ImGui/imconfig.h -------------------------------------------------------------------------------- /CS2CheatCpp/dependencies/ImGui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/dependencies/ImGui/imgui.cpp -------------------------------------------------------------------------------- /CS2CheatCpp/dependencies/ImGui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/dependencies/ImGui/imgui.h -------------------------------------------------------------------------------- /CS2CheatCpp/dependencies/ImGui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/dependencies/ImGui/imgui_demo.cpp -------------------------------------------------------------------------------- /CS2CheatCpp/dependencies/ImGui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/dependencies/ImGui/imgui_draw.cpp -------------------------------------------------------------------------------- /CS2CheatCpp/dependencies/ImGui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/dependencies/ImGui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /CS2CheatCpp/dependencies/ImGui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/dependencies/ImGui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /CS2CheatCpp/dependencies/ImGui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/dependencies/ImGui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /CS2CheatCpp/dependencies/ImGui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/dependencies/ImGui/imgui_impl_win32.h -------------------------------------------------------------------------------- /CS2CheatCpp/dependencies/ImGui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/dependencies/ImGui/imgui_internal.h -------------------------------------------------------------------------------- /CS2CheatCpp/dependencies/ImGui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/dependencies/ImGui/imgui_tables.cpp -------------------------------------------------------------------------------- /CS2CheatCpp/dependencies/ImGui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/dependencies/ImGui/imgui_widgets.cpp -------------------------------------------------------------------------------- /CS2CheatCpp/dependencies/ImGui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/dependencies/ImGui/imstb_rectpack.h -------------------------------------------------------------------------------- /CS2CheatCpp/dependencies/ImGui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/dependencies/ImGui/imstb_textedit.h -------------------------------------------------------------------------------- /CS2CheatCpp/dependencies/ImGui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/dependencies/ImGui/imstb_truetype.h -------------------------------------------------------------------------------- /CS2CheatCpp/imgui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/imgui.ini -------------------------------------------------------------------------------- /CS2CheatCpp/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/resource.h -------------------------------------------------------------------------------- /CS2CheatCpp/resource1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/resource1.h -------------------------------------------------------------------------------- /CS2CheatCpp/src/bone.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/src/bone.hpp -------------------------------------------------------------------------------- /CS2CheatCpp/src/entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/src/entity.h -------------------------------------------------------------------------------- /CS2CheatCpp/src/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/src/gui.cpp -------------------------------------------------------------------------------- /CS2CheatCpp/src/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/src/gui.h -------------------------------------------------------------------------------- /CS2CheatCpp/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/src/main.cpp -------------------------------------------------------------------------------- /CS2CheatCpp/src/memory/handle_hijack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/src/memory/handle_hijack.h -------------------------------------------------------------------------------- /CS2CheatCpp/src/memory/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/src/memory/memory.cpp -------------------------------------------------------------------------------- /CS2CheatCpp/src/memory/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/src/memory/memory.h -------------------------------------------------------------------------------- /CS2CheatCpp/src/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/src/render.h -------------------------------------------------------------------------------- /CS2CheatCpp/src/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/src/vector.h -------------------------------------------------------------------------------- /CS2CheatCpp/src/weapon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/CS2CheatCpp/src/weapon.hpp -------------------------------------------------------------------------------- /Debug/CS2CheatCpp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/Debug/CS2CheatCpp.pdb -------------------------------------------------------------------------------- /Debug/CS2_Cheat_Log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/Debug/CS2_Cheat_Log.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/README.md -------------------------------------------------------------------------------- /external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/external.png -------------------------------------------------------------------------------- /wechat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinleiCoder/cs2-cheat-cpp/HEAD/wechat.jpg --------------------------------------------------------------------------------