├── .gitignore ├── README.md ├── helldivers2.sln ├── helldivers2 ├── bypass.cpp ├── bypass.h ├── config.cpp ├── config.h ├── features.cpp ├── features.h ├── features │ ├── Data.cpp │ ├── Misc.cpp │ ├── Mission.cpp │ ├── Planet.cpp │ ├── Player.cpp │ ├── Stratagem.cpp │ └── Weapon.cpp ├── funchook.cpp ├── funchook.h ├── helldivers2.aps ├── helldivers2.rc ├── helldivers2.vcxproj ├── helldivers2.vcxproj.filters ├── include │ ├── D3D11Window.hpp │ ├── FileManager.h │ ├── Game.hpp │ ├── Hooking.hpp │ ├── Menu.hpp │ ├── Process.h │ ├── helper.h │ └── util.h ├── init.hpp ├── libs │ ├── ImGui │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_impl_dx11.cpp │ │ ├── imgui_impl_dx11.h │ │ ├── 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 │ ├── MinHook │ │ └── MinHook.h │ ├── UPD │ │ └── UniversalProxyDLL.h │ ├── VMProtect │ │ └── VMProtectSDK.h │ ├── json │ │ └── json.hpp │ └── xorstr.hpp ├── main.cpp ├── memory.h ├── pch.cpp ├── pch.h ├── resource.h └── src │ ├── D3D11Window.cpp │ ├── FileManager.cpp │ ├── Game.cpp │ ├── Hooking.cpp │ ├── Menu.cpp │ └── Process.cpp ├── localization ├── NotoSans-Regular.ttf ├── NotoSansJP-Regular.ttf ├── NotoSansKR-Regular.ttf ├── NotoSansSC-Regular.ttf └── localization.json └── media ├── screenshot1.png └── screenshot2.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/README.md -------------------------------------------------------------------------------- /helldivers2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2.sln -------------------------------------------------------------------------------- /helldivers2/bypass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/bypass.cpp -------------------------------------------------------------------------------- /helldivers2/bypass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/bypass.h -------------------------------------------------------------------------------- /helldivers2/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/config.cpp -------------------------------------------------------------------------------- /helldivers2/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/config.h -------------------------------------------------------------------------------- /helldivers2/features.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/features.cpp -------------------------------------------------------------------------------- /helldivers2/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/features.h -------------------------------------------------------------------------------- /helldivers2/features/Data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/features/Data.cpp -------------------------------------------------------------------------------- /helldivers2/features/Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/features/Misc.cpp -------------------------------------------------------------------------------- /helldivers2/features/Mission.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/features/Mission.cpp -------------------------------------------------------------------------------- /helldivers2/features/Planet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/features/Planet.cpp -------------------------------------------------------------------------------- /helldivers2/features/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/features/Player.cpp -------------------------------------------------------------------------------- /helldivers2/features/Stratagem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/features/Stratagem.cpp -------------------------------------------------------------------------------- /helldivers2/features/Weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/features/Weapon.cpp -------------------------------------------------------------------------------- /helldivers2/funchook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/funchook.cpp -------------------------------------------------------------------------------- /helldivers2/funchook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/funchook.h -------------------------------------------------------------------------------- /helldivers2/helldivers2.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/helldivers2.aps -------------------------------------------------------------------------------- /helldivers2/helldivers2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/helldivers2.rc -------------------------------------------------------------------------------- /helldivers2/helldivers2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/helldivers2.vcxproj -------------------------------------------------------------------------------- /helldivers2/helldivers2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/helldivers2.vcxproj.filters -------------------------------------------------------------------------------- /helldivers2/include/D3D11Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/include/D3D11Window.hpp -------------------------------------------------------------------------------- /helldivers2/include/FileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/include/FileManager.h -------------------------------------------------------------------------------- /helldivers2/include/Game.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/include/Game.hpp -------------------------------------------------------------------------------- /helldivers2/include/Hooking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/include/Hooking.hpp -------------------------------------------------------------------------------- /helldivers2/include/Menu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/include/Menu.hpp -------------------------------------------------------------------------------- /helldivers2/include/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/include/Process.h -------------------------------------------------------------------------------- /helldivers2/include/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/include/helper.h -------------------------------------------------------------------------------- /helldivers2/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/include/util.h -------------------------------------------------------------------------------- /helldivers2/init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/init.hpp -------------------------------------------------------------------------------- /helldivers2/libs/ImGui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/libs/ImGui/imconfig.h -------------------------------------------------------------------------------- /helldivers2/libs/ImGui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/libs/ImGui/imgui.cpp -------------------------------------------------------------------------------- /helldivers2/libs/ImGui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/libs/ImGui/imgui.h -------------------------------------------------------------------------------- /helldivers2/libs/ImGui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/libs/ImGui/imgui_demo.cpp -------------------------------------------------------------------------------- /helldivers2/libs/ImGui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/libs/ImGui/imgui_draw.cpp -------------------------------------------------------------------------------- /helldivers2/libs/ImGui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/libs/ImGui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /helldivers2/libs/ImGui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/libs/ImGui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /helldivers2/libs/ImGui/imgui_impl_dx12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/libs/ImGui/imgui_impl_dx12.cpp -------------------------------------------------------------------------------- /helldivers2/libs/ImGui/imgui_impl_dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/libs/ImGui/imgui_impl_dx12.h -------------------------------------------------------------------------------- /helldivers2/libs/ImGui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/libs/ImGui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /helldivers2/libs/ImGui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/libs/ImGui/imgui_impl_win32.h -------------------------------------------------------------------------------- /helldivers2/libs/ImGui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/libs/ImGui/imgui_internal.h -------------------------------------------------------------------------------- /helldivers2/libs/ImGui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/libs/ImGui/imgui_tables.cpp -------------------------------------------------------------------------------- /helldivers2/libs/ImGui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/libs/ImGui/imgui_widgets.cpp -------------------------------------------------------------------------------- /helldivers2/libs/ImGui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/libs/ImGui/imstb_rectpack.h -------------------------------------------------------------------------------- /helldivers2/libs/ImGui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/libs/ImGui/imstb_textedit.h -------------------------------------------------------------------------------- /helldivers2/libs/ImGui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/libs/ImGui/imstb_truetype.h -------------------------------------------------------------------------------- /helldivers2/libs/MinHook/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/libs/MinHook/MinHook.h -------------------------------------------------------------------------------- /helldivers2/libs/UPD/UniversalProxyDLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/libs/UPD/UniversalProxyDLL.h -------------------------------------------------------------------------------- /helldivers2/libs/VMProtect/VMProtectSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/libs/VMProtect/VMProtectSDK.h -------------------------------------------------------------------------------- /helldivers2/libs/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/libs/json/json.hpp -------------------------------------------------------------------------------- /helldivers2/libs/xorstr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/libs/xorstr.hpp -------------------------------------------------------------------------------- /helldivers2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/main.cpp -------------------------------------------------------------------------------- /helldivers2/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/memory.h -------------------------------------------------------------------------------- /helldivers2/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /helldivers2/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/pch.h -------------------------------------------------------------------------------- /helldivers2/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/resource.h -------------------------------------------------------------------------------- /helldivers2/src/D3D11Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/src/D3D11Window.cpp -------------------------------------------------------------------------------- /helldivers2/src/FileManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/src/FileManager.cpp -------------------------------------------------------------------------------- /helldivers2/src/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/src/Game.cpp -------------------------------------------------------------------------------- /helldivers2/src/Hooking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/src/Hooking.cpp -------------------------------------------------------------------------------- /helldivers2/src/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/src/Menu.cpp -------------------------------------------------------------------------------- /helldivers2/src/Process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/helldivers2/src/Process.cpp -------------------------------------------------------------------------------- /localization/NotoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/localization/NotoSans-Regular.ttf -------------------------------------------------------------------------------- /localization/NotoSansJP-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/localization/NotoSansJP-Regular.ttf -------------------------------------------------------------------------------- /localization/NotoSansKR-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/localization/NotoSansKR-Regular.ttf -------------------------------------------------------------------------------- /localization/NotoSansSC-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/localization/NotoSansSC-Regular.ttf -------------------------------------------------------------------------------- /localization/localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/localization/localization.json -------------------------------------------------------------------------------- /media/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/media/screenshot1.png -------------------------------------------------------------------------------- /media/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zDestinate/helldivers2-public-menu/HEAD/media/screenshot2.png --------------------------------------------------------------------------------