├── .gitattributes ├── .gitignore ├── DxD.sln └── DxDLLRender ├── Config ├── Config.h └── vars.h ├── DxDLLRender.vcxproj ├── DxDLLRender.vcxproj.filters ├── Hook ├── MenuHook.cpp ├── MenuHook.h ├── MinHook.h ├── buffer.c ├── buffer.h ├── hde64.c ├── hde64.h ├── hook.c ├── pstdint.h ├── table64.h ├── trampoline.c └── trampoline.h ├── Init.h ├── NewGui.h ├── Render.h ├── VMProtectSDK64.lib ├── cheat_funcs ├── AimFuncs.h ├── EntityFuncs.h ├── EspFuncs.h └── MiscFuncs.h ├── dllmain.cpp ├── gui.h ├── imgui ├── imconfig.h ├── imgui.cpp ├── imgui.h ├── imgui_demo.cpp ├── imgui_draw.cpp ├── imgui_impl_dx11.cpp ├── imgui_impl_dx11.h ├── imgui_impl_dx9.cpp ├── imgui_impl_dx9.h ├── imgui_impl_win32.cpp ├── imgui_impl_win32.h ├── imgui_internal.h ├── imgui_stdlib.cpp ├── imgui_stdlib.h ├── imgui_widgets.cpp ├── imstb_rectpack.h ├── imstb_textedit.h └── imstb_truetype.h ├── sdk ├── Config.h ├── NewUtils.h ├── VMProtectSDK.h ├── game_sdk.h ├── safe_mem.h └── utils.h ├── sdk_new └── math.h ├── visual.h └── winternl.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/.gitignore -------------------------------------------------------------------------------- /DxD.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxD.sln -------------------------------------------------------------------------------- /DxDLLRender/Config/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/Config/Config.h -------------------------------------------------------------------------------- /DxDLLRender/Config/vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/Config/vars.h -------------------------------------------------------------------------------- /DxDLLRender/DxDLLRender.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/DxDLLRender.vcxproj -------------------------------------------------------------------------------- /DxDLLRender/DxDLLRender.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/DxDLLRender.vcxproj.filters -------------------------------------------------------------------------------- /DxDLLRender/Hook/MenuHook.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DxDLLRender/Hook/MenuHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/Hook/MenuHook.h -------------------------------------------------------------------------------- /DxDLLRender/Hook/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/Hook/MinHook.h -------------------------------------------------------------------------------- /DxDLLRender/Hook/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/Hook/buffer.c -------------------------------------------------------------------------------- /DxDLLRender/Hook/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/Hook/buffer.h -------------------------------------------------------------------------------- /DxDLLRender/Hook/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/Hook/hde64.c -------------------------------------------------------------------------------- /DxDLLRender/Hook/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/Hook/hde64.h -------------------------------------------------------------------------------- /DxDLLRender/Hook/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/Hook/hook.c -------------------------------------------------------------------------------- /DxDLLRender/Hook/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/Hook/pstdint.h -------------------------------------------------------------------------------- /DxDLLRender/Hook/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/Hook/table64.h -------------------------------------------------------------------------------- /DxDLLRender/Hook/trampoline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/Hook/trampoline.c -------------------------------------------------------------------------------- /DxDLLRender/Hook/trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/Hook/trampoline.h -------------------------------------------------------------------------------- /DxDLLRender/Init.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DxDLLRender/NewGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/NewGui.h -------------------------------------------------------------------------------- /DxDLLRender/Render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/Render.h -------------------------------------------------------------------------------- /DxDLLRender/VMProtectSDK64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/VMProtectSDK64.lib -------------------------------------------------------------------------------- /DxDLLRender/cheat_funcs/AimFuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/cheat_funcs/AimFuncs.h -------------------------------------------------------------------------------- /DxDLLRender/cheat_funcs/EntityFuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/cheat_funcs/EntityFuncs.h -------------------------------------------------------------------------------- /DxDLLRender/cheat_funcs/EspFuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/cheat_funcs/EspFuncs.h -------------------------------------------------------------------------------- /DxDLLRender/cheat_funcs/MiscFuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/cheat_funcs/MiscFuncs.h -------------------------------------------------------------------------------- /DxDLLRender/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/dllmain.cpp -------------------------------------------------------------------------------- /DxDLLRender/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/gui.h -------------------------------------------------------------------------------- /DxDLLRender/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/imgui/imconfig.h -------------------------------------------------------------------------------- /DxDLLRender/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/imgui/imgui.cpp -------------------------------------------------------------------------------- /DxDLLRender/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/imgui/imgui.h -------------------------------------------------------------------------------- /DxDLLRender/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /DxDLLRender/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /DxDLLRender/imgui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/imgui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /DxDLLRender/imgui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/imgui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /DxDLLRender/imgui/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/imgui/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /DxDLLRender/imgui/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/imgui/imgui_impl_dx9.h -------------------------------------------------------------------------------- /DxDLLRender/imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /DxDLLRender/imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /DxDLLRender/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/imgui/imgui_internal.h -------------------------------------------------------------------------------- /DxDLLRender/imgui/imgui_stdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/imgui/imgui_stdlib.cpp -------------------------------------------------------------------------------- /DxDLLRender/imgui/imgui_stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/imgui/imgui_stdlib.h -------------------------------------------------------------------------------- /DxDLLRender/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /DxDLLRender/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /DxDLLRender/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /DxDLLRender/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /DxDLLRender/sdk/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/sdk/Config.h -------------------------------------------------------------------------------- /DxDLLRender/sdk/NewUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/sdk/NewUtils.h -------------------------------------------------------------------------------- /DxDLLRender/sdk/VMProtectSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/sdk/VMProtectSDK.h -------------------------------------------------------------------------------- /DxDLLRender/sdk/game_sdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/sdk/game_sdk.h -------------------------------------------------------------------------------- /DxDLLRender/sdk/safe_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/sdk/safe_mem.h -------------------------------------------------------------------------------- /DxDLLRender/sdk/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/sdk/utils.h -------------------------------------------------------------------------------- /DxDLLRender/sdk_new/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/sdk_new/math.h -------------------------------------------------------------------------------- /DxDLLRender/visual.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DxDLLRender/winternl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roccs1992/v2268/HEAD/DxDLLRender/winternl.h --------------------------------------------------------------------------------