├── .gitattributes ├── .gitignore ├── Cheat ├── Cheat.vcxproj ├── Cheat.vcxproj.filters ├── Cheat.vcxproj.user ├── SDK.cpp ├── SDK.h ├── cheat.cpp ├── cheat.h └── main.cpp ├── Loader ├── Loader.vcxproj ├── Loader.vcxproj.filters ├── Loader.vcxproj.user └── main.cpp ├── MenuTest ├── MenuTest.vcxproj ├── MenuTest.vcxproj.filters ├── MenuTest.vcxproj.user └── main.cpp ├── README.md ├── SoT-Hook.sln └── include ├── HookLib └── HookLib.h ├── UE4 ├── Array.h ├── Color.h ├── Math.h ├── Matrix.h ├── Quat.h ├── Rotator.h ├── Transform.cpp ├── Transform.h ├── UE4.cpp ├── UE4.h ├── Vector.h ├── Vector2D.h └── Vector4.h └── 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_widgets.cpp ├── imstb_rectpack.h ├── imstb_textedit.h └── imstb_truetype.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | bin 3 | lib 4 | Release 5 | Debug 6 | Tests -------------------------------------------------------------------------------- /Cheat/Cheat.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/Cheat/Cheat.vcxproj -------------------------------------------------------------------------------- /Cheat/Cheat.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/Cheat/Cheat.vcxproj.filters -------------------------------------------------------------------------------- /Cheat/Cheat.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/Cheat/Cheat.vcxproj.user -------------------------------------------------------------------------------- /Cheat/SDK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/Cheat/SDK.cpp -------------------------------------------------------------------------------- /Cheat/SDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/Cheat/SDK.h -------------------------------------------------------------------------------- /Cheat/cheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/Cheat/cheat.cpp -------------------------------------------------------------------------------- /Cheat/cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/Cheat/cheat.h -------------------------------------------------------------------------------- /Cheat/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/Cheat/main.cpp -------------------------------------------------------------------------------- /Loader/Loader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/Loader/Loader.vcxproj -------------------------------------------------------------------------------- /Loader/Loader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/Loader/Loader.vcxproj.filters -------------------------------------------------------------------------------- /Loader/Loader.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/Loader/Loader.vcxproj.user -------------------------------------------------------------------------------- /Loader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/Loader/main.cpp -------------------------------------------------------------------------------- /MenuTest/MenuTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/MenuTest/MenuTest.vcxproj -------------------------------------------------------------------------------- /MenuTest/MenuTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/MenuTest/MenuTest.vcxproj.filters -------------------------------------------------------------------------------- /MenuTest/MenuTest.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/MenuTest/MenuTest.vcxproj.user -------------------------------------------------------------------------------- /MenuTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/MenuTest/main.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/README.md -------------------------------------------------------------------------------- /SoT-Hook.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/SoT-Hook.sln -------------------------------------------------------------------------------- /include/HookLib/HookLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/HookLib/HookLib.h -------------------------------------------------------------------------------- /include/UE4/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/UE4/Array.h -------------------------------------------------------------------------------- /include/UE4/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/UE4/Color.h -------------------------------------------------------------------------------- /include/UE4/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/UE4/Math.h -------------------------------------------------------------------------------- /include/UE4/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/UE4/Matrix.h -------------------------------------------------------------------------------- /include/UE4/Quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/UE4/Quat.h -------------------------------------------------------------------------------- /include/UE4/Rotator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/UE4/Rotator.h -------------------------------------------------------------------------------- /include/UE4/Transform.cpp: -------------------------------------------------------------------------------- 1 | #include "Transform.h" 2 | 3 | -------------------------------------------------------------------------------- /include/UE4/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/UE4/Transform.h -------------------------------------------------------------------------------- /include/UE4/UE4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/UE4/UE4.cpp -------------------------------------------------------------------------------- /include/UE4/UE4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/UE4/UE4.h -------------------------------------------------------------------------------- /include/UE4/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/UE4/Vector.h -------------------------------------------------------------------------------- /include/UE4/Vector2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/UE4/Vector2D.h -------------------------------------------------------------------------------- /include/UE4/Vector4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/UE4/Vector4.h -------------------------------------------------------------------------------- /include/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/imgui/imconfig.h -------------------------------------------------------------------------------- /include/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/imgui/imgui.cpp -------------------------------------------------------------------------------- /include/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/imgui/imgui.h -------------------------------------------------------------------------------- /include/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /include/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /include/imgui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/imgui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /include/imgui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/imgui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /include/imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /include/imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /include/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/imgui/imgui_internal.h -------------------------------------------------------------------------------- /include/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /include/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /include/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /include/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guttir14/SoT-Hook/HEAD/include/imgui/imstb_truetype.h --------------------------------------------------------------------------------