├── .gitignore ├── HDE ├── hde32.c ├── hde32.h ├── hde64.c ├── hde64.h ├── pstdint.h ├── table32.h └── table64.h ├── LICENSE ├── MinHook.h ├── README.md ├── aimbot.cpp ├── aimbot.hpp ├── buffer.c ├── buffer.h ├── cheat.cpp ├── cheat.hpp ├── common.h ├── custom.cpp ├── custom.hpp ├── esp.cpp ├── esp.hpp ├── font.hpp ├── hook.c ├── hooking.cpp ├── hooking.hpp ├── imconfig.h ├── imgui.cpp ├── imgui.h ├── imgui_demo.cpp ├── imgui_draw.cpp ├── imgui_impl_dx12.cpp ├── imgui_impl_dx12.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 ├── main.cpp ├── main.hpp ├── memory.hpp ├── menu.cpp ├── menu.hpp ├── pointers.cpp ├── pointers.hpp ├── render.cpp ├── render.hpp ├── tahoma.hpp ├── the-finals.sln ├── the-finals.vcxproj ├── the-finals.vcxproj.filters ├── the-finals.vcxproj.user ├── trampoline.c └── trampoline.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/.gitignore -------------------------------------------------------------------------------- /HDE/hde32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/HDE/hde32.c -------------------------------------------------------------------------------- /HDE/hde32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/HDE/hde32.h -------------------------------------------------------------------------------- /HDE/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/HDE/hde64.c -------------------------------------------------------------------------------- /HDE/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/HDE/hde64.h -------------------------------------------------------------------------------- /HDE/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/HDE/pstdint.h -------------------------------------------------------------------------------- /HDE/table32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/HDE/table32.h -------------------------------------------------------------------------------- /HDE/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/HDE/table64.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/LICENSE -------------------------------------------------------------------------------- /MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/MinHook.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/README.md -------------------------------------------------------------------------------- /aimbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/aimbot.cpp -------------------------------------------------------------------------------- /aimbot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/aimbot.hpp -------------------------------------------------------------------------------- /buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/buffer.c -------------------------------------------------------------------------------- /buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/buffer.h -------------------------------------------------------------------------------- /cheat.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cheat.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/common.h -------------------------------------------------------------------------------- /custom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/custom.cpp -------------------------------------------------------------------------------- /custom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/custom.hpp -------------------------------------------------------------------------------- /esp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/esp.cpp -------------------------------------------------------------------------------- /esp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/esp.hpp -------------------------------------------------------------------------------- /font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/font.hpp -------------------------------------------------------------------------------- /hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/hook.c -------------------------------------------------------------------------------- /hooking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/hooking.cpp -------------------------------------------------------------------------------- /hooking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/hooking.hpp -------------------------------------------------------------------------------- /imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/imconfig.h -------------------------------------------------------------------------------- /imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/imgui.cpp -------------------------------------------------------------------------------- /imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/imgui.h -------------------------------------------------------------------------------- /imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/imgui_demo.cpp -------------------------------------------------------------------------------- /imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/imgui_draw.cpp -------------------------------------------------------------------------------- /imgui_impl_dx12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/imgui_impl_dx12.cpp -------------------------------------------------------------------------------- /imgui_impl_dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/imgui_impl_dx12.h -------------------------------------------------------------------------------- /imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/imgui_impl_win32.h -------------------------------------------------------------------------------- /imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/imgui_internal.h -------------------------------------------------------------------------------- /imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/imgui_tables.cpp -------------------------------------------------------------------------------- /imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/imgui_widgets.cpp -------------------------------------------------------------------------------- /imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/imstb_rectpack.h -------------------------------------------------------------------------------- /imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/imstb_textedit.h -------------------------------------------------------------------------------- /imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/imstb_truetype.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/main.cpp -------------------------------------------------------------------------------- /main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/main.hpp -------------------------------------------------------------------------------- /memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/memory.hpp -------------------------------------------------------------------------------- /menu.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /menu.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pointers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/pointers.cpp -------------------------------------------------------------------------------- /pointers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/pointers.hpp -------------------------------------------------------------------------------- /render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/render.cpp -------------------------------------------------------------------------------- /render.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/render.hpp -------------------------------------------------------------------------------- /tahoma.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/tahoma.hpp -------------------------------------------------------------------------------- /the-finals.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/the-finals.sln -------------------------------------------------------------------------------- /the-finals.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/the-finals.vcxproj -------------------------------------------------------------------------------- /the-finals.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/the-finals.vcxproj.filters -------------------------------------------------------------------------------- /the-finals.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/the-finals.vcxproj.user -------------------------------------------------------------------------------- /trampoline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/trampoline.c -------------------------------------------------------------------------------- /trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soren-source/the-finals-uc/HEAD/trampoline.h --------------------------------------------------------------------------------