├── README.md ├── csgo2.sln └── src ├── combat ├── combat.cpp └── combat.hpp ├── config ├── config.cpp └── config.hpp ├── csgo2.filters ├── csgo2.vcxproj ├── csgo2.vcxproj.filters ├── entry.cpp ├── hooks ├── hooks.cpp └── hooks.hpp ├── menu ├── menu.cpp └── menu.hpp ├── signatures.hpp ├── source2-sdk ├── classes │ ├── entities.hpp │ ├── global_vars.hpp │ ├── skeleton.hpp │ ├── trace.hpp │ └── user_cmd.hpp ├── interfaces │ ├── i_client.hpp │ ├── i_csgo_input.hpp │ ├── i_engine_client.hpp │ ├── i_entity_list.hpp │ ├── i_input_system.hpp │ ├── i_renderer.hpp │ ├── i_schema_system.hpp │ ├── i_trace.hpp │ ├── interfaces.cpp │ └── interfaces.hpp ├── math │ ├── color_t.cpp │ ├── color_t.hpp │ ├── math.cpp │ ├── math.hpp │ ├── vec2_t.cpp │ ├── vec2_t.hpp │ ├── vec3_t.cpp │ ├── vec3_t.hpp │ ├── vec4_t.cpp │ └── vec4_t.hpp ├── schema_system │ ├── schema_system.cpp │ └── schema_system.hpp ├── sdk.cpp ├── sdk.hpp └── sdl │ ├── sdl.cpp │ └── sdl.hpp ├── utilities ├── console │ ├── console.cpp │ └── console.hpp ├── debug_console │ ├── debug.cpp │ └── debug.hpp ├── imgui │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── 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 ├── minhook │ ├── MinHook.h │ ├── buffer.c │ ├── buffer.h │ ├── hde │ │ ├── hde32.c │ │ ├── hde32.h │ │ ├── hde64.c │ │ ├── hde64.h │ │ ├── pstdint.h │ │ ├── table32.h │ │ └── table64.h │ ├── hook.c │ ├── trampoline.c │ └── trampoline.h ├── renderer │ ├── renderer.cpp │ └── renderer.hpp ├── shadow_vmt │ ├── shadow_vmt.cpp │ └── shadow_vmt.hpp ├── utilities.cpp └── utilities.hpp └── visuals ├── visuals.cpp └── visuals.hpp /README.md: -------------------------------------------------------------------------------- 1 | # csgo2-cheat 2 | Counter Strike 2 | Cheat Source 3 | -------------------------------------------------------------------------------- /csgo2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/csgo2.sln -------------------------------------------------------------------------------- /src/combat/combat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/combat/combat.cpp -------------------------------------------------------------------------------- /src/combat/combat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/combat/combat.hpp -------------------------------------------------------------------------------- /src/config/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/config/config.cpp -------------------------------------------------------------------------------- /src/config/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/config/config.hpp -------------------------------------------------------------------------------- /src/csgo2.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/csgo2.filters -------------------------------------------------------------------------------- /src/csgo2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/csgo2.vcxproj -------------------------------------------------------------------------------- /src/csgo2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/csgo2.vcxproj.filters -------------------------------------------------------------------------------- /src/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/entry.cpp -------------------------------------------------------------------------------- /src/hooks/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/hooks/hooks.cpp -------------------------------------------------------------------------------- /src/hooks/hooks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/hooks/hooks.hpp -------------------------------------------------------------------------------- /src/menu/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/menu/menu.cpp -------------------------------------------------------------------------------- /src/menu/menu.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace menu 4 | { 5 | extern bool open; 6 | 7 | void render(); 8 | } -------------------------------------------------------------------------------- /src/signatures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/signatures.hpp -------------------------------------------------------------------------------- /src/source2-sdk/classes/entities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/classes/entities.hpp -------------------------------------------------------------------------------- /src/source2-sdk/classes/global_vars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/classes/global_vars.hpp -------------------------------------------------------------------------------- /src/source2-sdk/classes/skeleton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/classes/skeleton.hpp -------------------------------------------------------------------------------- /src/source2-sdk/classes/trace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/classes/trace.hpp -------------------------------------------------------------------------------- /src/source2-sdk/classes/user_cmd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/classes/user_cmd.hpp -------------------------------------------------------------------------------- /src/source2-sdk/interfaces/i_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/interfaces/i_client.hpp -------------------------------------------------------------------------------- /src/source2-sdk/interfaces/i_csgo_input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/interfaces/i_csgo_input.hpp -------------------------------------------------------------------------------- /src/source2-sdk/interfaces/i_engine_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/interfaces/i_engine_client.hpp -------------------------------------------------------------------------------- /src/source2-sdk/interfaces/i_entity_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/interfaces/i_entity_list.hpp -------------------------------------------------------------------------------- /src/source2-sdk/interfaces/i_input_system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/interfaces/i_input_system.hpp -------------------------------------------------------------------------------- /src/source2-sdk/interfaces/i_renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/interfaces/i_renderer.hpp -------------------------------------------------------------------------------- /src/source2-sdk/interfaces/i_schema_system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/interfaces/i_schema_system.hpp -------------------------------------------------------------------------------- /src/source2-sdk/interfaces/i_trace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/interfaces/i_trace.hpp -------------------------------------------------------------------------------- /src/source2-sdk/interfaces/interfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/interfaces/interfaces.cpp -------------------------------------------------------------------------------- /src/source2-sdk/interfaces/interfaces.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/interfaces/interfaces.hpp -------------------------------------------------------------------------------- /src/source2-sdk/math/color_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/math/color_t.cpp -------------------------------------------------------------------------------- /src/source2-sdk/math/color_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/math/color_t.hpp -------------------------------------------------------------------------------- /src/source2-sdk/math/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/math/math.cpp -------------------------------------------------------------------------------- /src/source2-sdk/math/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/math/math.hpp -------------------------------------------------------------------------------- /src/source2-sdk/math/vec2_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/math/vec2_t.cpp -------------------------------------------------------------------------------- /src/source2-sdk/math/vec2_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/math/vec2_t.hpp -------------------------------------------------------------------------------- /src/source2-sdk/math/vec3_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/math/vec3_t.cpp -------------------------------------------------------------------------------- /src/source2-sdk/math/vec3_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/math/vec3_t.hpp -------------------------------------------------------------------------------- /src/source2-sdk/math/vec4_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/math/vec4_t.cpp -------------------------------------------------------------------------------- /src/source2-sdk/math/vec4_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/math/vec4_t.hpp -------------------------------------------------------------------------------- /src/source2-sdk/schema_system/schema_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/schema_system/schema_system.cpp -------------------------------------------------------------------------------- /src/source2-sdk/schema_system/schema_system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/schema_system/schema_system.hpp -------------------------------------------------------------------------------- /src/source2-sdk/sdk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/sdk.cpp -------------------------------------------------------------------------------- /src/source2-sdk/sdk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/sdk.hpp -------------------------------------------------------------------------------- /src/source2-sdk/sdl/sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/sdl/sdl.cpp -------------------------------------------------------------------------------- /src/source2-sdk/sdl/sdl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/source2-sdk/sdl/sdl.hpp -------------------------------------------------------------------------------- /src/utilities/console/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/console/console.cpp -------------------------------------------------------------------------------- /src/utilities/console/console.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/console/console.hpp -------------------------------------------------------------------------------- /src/utilities/debug_console/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/debug_console/debug.cpp -------------------------------------------------------------------------------- /src/utilities/debug_console/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/debug_console/debug.hpp -------------------------------------------------------------------------------- /src/utilities/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/imgui/imconfig.h -------------------------------------------------------------------------------- /src/utilities/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/imgui/imgui.cpp -------------------------------------------------------------------------------- /src/utilities/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/imgui/imgui.h -------------------------------------------------------------------------------- /src/utilities/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /src/utilities/imgui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/imgui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /src/utilities/imgui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/imgui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /src/utilities/imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /src/utilities/imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /src/utilities/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/imgui/imgui_internal.h -------------------------------------------------------------------------------- /src/utilities/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /src/utilities/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /src/utilities/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /src/utilities/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /src/utilities/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /src/utilities/minhook/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/minhook/MinHook.h -------------------------------------------------------------------------------- /src/utilities/minhook/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/minhook/buffer.c -------------------------------------------------------------------------------- /src/utilities/minhook/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/minhook/buffer.h -------------------------------------------------------------------------------- /src/utilities/minhook/hde/hde32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/minhook/hde/hde32.c -------------------------------------------------------------------------------- /src/utilities/minhook/hde/hde32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/minhook/hde/hde32.h -------------------------------------------------------------------------------- /src/utilities/minhook/hde/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/minhook/hde/hde64.c -------------------------------------------------------------------------------- /src/utilities/minhook/hde/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/minhook/hde/hde64.h -------------------------------------------------------------------------------- /src/utilities/minhook/hde/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/minhook/hde/pstdint.h -------------------------------------------------------------------------------- /src/utilities/minhook/hde/table32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/minhook/hde/table32.h -------------------------------------------------------------------------------- /src/utilities/minhook/hde/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/minhook/hde/table64.h -------------------------------------------------------------------------------- /src/utilities/minhook/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/minhook/hook.c -------------------------------------------------------------------------------- /src/utilities/minhook/trampoline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/minhook/trampoline.c -------------------------------------------------------------------------------- /src/utilities/minhook/trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/minhook/trampoline.h -------------------------------------------------------------------------------- /src/utilities/renderer/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/renderer/renderer.cpp -------------------------------------------------------------------------------- /src/utilities/renderer/renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/renderer/renderer.hpp -------------------------------------------------------------------------------- /src/utilities/shadow_vmt/shadow_vmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/shadow_vmt/shadow_vmt.cpp -------------------------------------------------------------------------------- /src/utilities/shadow_vmt/shadow_vmt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/shadow_vmt/shadow_vmt.hpp -------------------------------------------------------------------------------- /src/utilities/utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/utilities.cpp -------------------------------------------------------------------------------- /src/utilities/utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/utilities/utilities.hpp -------------------------------------------------------------------------------- /src/visuals/visuals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imnotdatguy/csgo2-cheat/HEAD/src/visuals/visuals.cpp -------------------------------------------------------------------------------- /src/visuals/visuals.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace visuals 4 | { 5 | void run_player_esp(); 6 | } --------------------------------------------------------------------------------