├── Project5 ├── Project5.sln └── Project5 │ ├── CGame.cpp │ ├── CGame.h │ ├── CGraphics.cpp │ ├── CGraphics.h │ ├── DLLMain.cpp │ ├── DLLMain.h │ ├── Detours │ ├── include │ │ ├── detours.h │ │ └── detver.h │ ├── lib.X64 │ │ └── detours.lib │ ├── lib.X86 │ │ └── detours.lib │ └── src │ │ ├── Makefile │ │ ├── creatwth.cpp │ │ ├── detours.cpp │ │ ├── detours.h │ │ ├── detver.h │ │ ├── disasm.cpp │ │ ├── image.cpp │ │ ├── modules.cpp │ │ └── uimports.cpp │ ├── Entity.cpp │ ├── Entity.h │ ├── Helpers.cpp │ ├── Helpers.h │ ├── Hooks.cpp │ ├── Hooks.h │ ├── ImGui │ ├── cx_fnv1.h │ ├── cx_pcg32.h │ ├── cx_strenc.h │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_draw.cpp │ ├── imgui_impl_dx11.cpp │ ├── imgui_impl_dx11.h │ ├── imgui_internal.h │ ├── stb_rect_pack.h │ ├── stb_textedit.h │ └── stb_truetype.h │ ├── Input.cpp │ ├── Input.h │ ├── MakeJMP.h │ ├── Matrix4x4.h │ ├── Memory.h │ ├── Offsets.h │ ├── Project5.vcxproj │ ├── Project5.vcxproj.filters │ ├── Project5.vcxproj.user │ ├── Renderer.cpp │ ├── Renderer.h │ ├── Rubik.h │ ├── Settings.cpp │ ├── Settings.h │ ├── Start.cpp │ ├── Start.h │ ├── UserInterface.cpp │ ├── UserInterface.h │ ├── Vector3.cpp │ ├── Vector3.h │ ├── Visual.cpp │ ├── Visual.h │ ├── XorStr.h │ └── stdfx.h └── README.md /Project5/Project5.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5.sln -------------------------------------------------------------------------------- /Project5/Project5/CGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/CGame.cpp -------------------------------------------------------------------------------- /Project5/Project5/CGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/CGame.h -------------------------------------------------------------------------------- /Project5/Project5/CGraphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/CGraphics.cpp -------------------------------------------------------------------------------- /Project5/Project5/CGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/CGraphics.h -------------------------------------------------------------------------------- /Project5/Project5/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/DLLMain.cpp -------------------------------------------------------------------------------- /Project5/Project5/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/DLLMain.h -------------------------------------------------------------------------------- /Project5/Project5/Detours/include/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Detours/include/detours.h -------------------------------------------------------------------------------- /Project5/Project5/Detours/include/detver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Detours/include/detver.h -------------------------------------------------------------------------------- /Project5/Project5/Detours/lib.X64/detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Detours/lib.X64/detours.lib -------------------------------------------------------------------------------- /Project5/Project5/Detours/lib.X86/detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Detours/lib.X86/detours.lib -------------------------------------------------------------------------------- /Project5/Project5/Detours/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Detours/src/Makefile -------------------------------------------------------------------------------- /Project5/Project5/Detours/src/creatwth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Detours/src/creatwth.cpp -------------------------------------------------------------------------------- /Project5/Project5/Detours/src/detours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Detours/src/detours.cpp -------------------------------------------------------------------------------- /Project5/Project5/Detours/src/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Detours/src/detours.h -------------------------------------------------------------------------------- /Project5/Project5/Detours/src/detver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Detours/src/detver.h -------------------------------------------------------------------------------- /Project5/Project5/Detours/src/disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Detours/src/disasm.cpp -------------------------------------------------------------------------------- /Project5/Project5/Detours/src/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Detours/src/image.cpp -------------------------------------------------------------------------------- /Project5/Project5/Detours/src/modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Detours/src/modules.cpp -------------------------------------------------------------------------------- /Project5/Project5/Detours/src/uimports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Detours/src/uimports.cpp -------------------------------------------------------------------------------- /Project5/Project5/Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Entity.cpp -------------------------------------------------------------------------------- /Project5/Project5/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Entity.h -------------------------------------------------------------------------------- /Project5/Project5/Helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Helpers.cpp -------------------------------------------------------------------------------- /Project5/Project5/Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Helpers.h -------------------------------------------------------------------------------- /Project5/Project5/Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Hooks.cpp -------------------------------------------------------------------------------- /Project5/Project5/Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Hooks.h -------------------------------------------------------------------------------- /Project5/Project5/ImGui/cx_fnv1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/ImGui/cx_fnv1.h -------------------------------------------------------------------------------- /Project5/Project5/ImGui/cx_pcg32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/ImGui/cx_pcg32.h -------------------------------------------------------------------------------- /Project5/Project5/ImGui/cx_strenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/ImGui/cx_strenc.h -------------------------------------------------------------------------------- /Project5/Project5/ImGui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/ImGui/imconfig.h -------------------------------------------------------------------------------- /Project5/Project5/ImGui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/ImGui/imgui.cpp -------------------------------------------------------------------------------- /Project5/Project5/ImGui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/ImGui/imgui.h -------------------------------------------------------------------------------- /Project5/Project5/ImGui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/ImGui/imgui_draw.cpp -------------------------------------------------------------------------------- /Project5/Project5/ImGui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/ImGui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /Project5/Project5/ImGui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/ImGui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /Project5/Project5/ImGui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/ImGui/imgui_internal.h -------------------------------------------------------------------------------- /Project5/Project5/ImGui/stb_rect_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/ImGui/stb_rect_pack.h -------------------------------------------------------------------------------- /Project5/Project5/ImGui/stb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/ImGui/stb_textedit.h -------------------------------------------------------------------------------- /Project5/Project5/ImGui/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/ImGui/stb_truetype.h -------------------------------------------------------------------------------- /Project5/Project5/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Input.cpp -------------------------------------------------------------------------------- /Project5/Project5/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Input.h -------------------------------------------------------------------------------- /Project5/Project5/MakeJMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/MakeJMP.h -------------------------------------------------------------------------------- /Project5/Project5/Matrix4x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Matrix4x4.h -------------------------------------------------------------------------------- /Project5/Project5/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Memory.h -------------------------------------------------------------------------------- /Project5/Project5/Offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Offsets.h -------------------------------------------------------------------------------- /Project5/Project5/Project5.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Project5.vcxproj -------------------------------------------------------------------------------- /Project5/Project5/Project5.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Project5.vcxproj.filters -------------------------------------------------------------------------------- /Project5/Project5/Project5.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Project5.vcxproj.user -------------------------------------------------------------------------------- /Project5/Project5/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Renderer.cpp -------------------------------------------------------------------------------- /Project5/Project5/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Renderer.h -------------------------------------------------------------------------------- /Project5/Project5/Rubik.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Rubik.h -------------------------------------------------------------------------------- /Project5/Project5/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Settings.cpp -------------------------------------------------------------------------------- /Project5/Project5/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Settings.h -------------------------------------------------------------------------------- /Project5/Project5/Start.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Start.cpp -------------------------------------------------------------------------------- /Project5/Project5/Start.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Start.h -------------------------------------------------------------------------------- /Project5/Project5/UserInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/UserInterface.cpp -------------------------------------------------------------------------------- /Project5/Project5/UserInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/UserInterface.h -------------------------------------------------------------------------------- /Project5/Project5/Vector3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Vector3.cpp -------------------------------------------------------------------------------- /Project5/Project5/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Vector3.h -------------------------------------------------------------------------------- /Project5/Project5/Visual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Visual.cpp -------------------------------------------------------------------------------- /Project5/Project5/Visual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/Visual.h -------------------------------------------------------------------------------- /Project5/Project5/XorStr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/XorStr.h -------------------------------------------------------------------------------- /Project5/Project5/stdfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/Project5/Project5/stdfx.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0rtale/H1Z1-Internal-Full/HEAD/README.md --------------------------------------------------------------------------------