├── .clang-format ├── .github └── workflows │ ├── build.yml │ └── soon.yml ├── .gitignore ├── .gitmodules ├── .vscode ├── c_cpp_properties.json └── settings.json ├── CMakeLists.txt ├── README.md ├── Scripts ├── build_project.ps1 ├── deploy_standalone.ps1 ├── deploy_unverum.ps1 ├── package_standalone.ps1 ├── package_unverum.ps1 └── package_unverum_manual.ps1 ├── StriveFrameData ├── .gitignore ├── CMakeLists.txt ├── include │ ├── arcsys.h │ ├── bbscript.h │ ├── bind_watcher.h │ ├── bitmask.h │ ├── common.h │ ├── draw_utils.h │ ├── framebar.h │ ├── framebar_p.h │ ├── hitboxes.h │ ├── menu.h │ ├── sigscan.h │ └── struct_util.h └── src │ ├── arcsys.cpp │ ├── bbscript.cpp │ ├── bind_watcher.cpp │ ├── dllmain.cpp │ ├── draw_utils.cpp │ ├── framebar.cpp │ ├── hitboxes.cpp │ ├── menu.cpp │ └── sigscan.cpp ├── docs └── readme_banner.png └── prereqs ├── FText_Constructor.lua ├── UE4SS-settings.ini ├── Unverum Installation Instructions.txt └── mods.txt /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/soon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/.github/workflows/soon.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/build_project.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/Scripts/build_project.ps1 -------------------------------------------------------------------------------- /Scripts/deploy_standalone.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/Scripts/deploy_standalone.ps1 -------------------------------------------------------------------------------- /Scripts/deploy_unverum.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/Scripts/deploy_unverum.ps1 -------------------------------------------------------------------------------- /Scripts/package_standalone.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/Scripts/package_standalone.ps1 -------------------------------------------------------------------------------- /Scripts/package_unverum.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/Scripts/package_unverum.ps1 -------------------------------------------------------------------------------- /Scripts/package_unverum_manual.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/Scripts/package_unverum_manual.ps1 -------------------------------------------------------------------------------- /StriveFrameData/.gitignore: -------------------------------------------------------------------------------- 1 | /x64 -------------------------------------------------------------------------------- /StriveFrameData/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/StriveFrameData/CMakeLists.txt -------------------------------------------------------------------------------- /StriveFrameData/include/arcsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/StriveFrameData/include/arcsys.h -------------------------------------------------------------------------------- /StriveFrameData/include/bbscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/StriveFrameData/include/bbscript.h -------------------------------------------------------------------------------- /StriveFrameData/include/bind_watcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/StriveFrameData/include/bind_watcher.h -------------------------------------------------------------------------------- /StriveFrameData/include/bitmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/StriveFrameData/include/bitmask.h -------------------------------------------------------------------------------- /StriveFrameData/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/StriveFrameData/include/common.h -------------------------------------------------------------------------------- /StriveFrameData/include/draw_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/StriveFrameData/include/draw_utils.h -------------------------------------------------------------------------------- /StriveFrameData/include/framebar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/StriveFrameData/include/framebar.h -------------------------------------------------------------------------------- /StriveFrameData/include/framebar_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/StriveFrameData/include/framebar_p.h -------------------------------------------------------------------------------- /StriveFrameData/include/hitboxes.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void drawAllBoxes(); -------------------------------------------------------------------------------- /StriveFrameData/include/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/StriveFrameData/include/menu.h -------------------------------------------------------------------------------- /StriveFrameData/include/sigscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/StriveFrameData/include/sigscan.h -------------------------------------------------------------------------------- /StriveFrameData/include/struct_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/StriveFrameData/include/struct_util.h -------------------------------------------------------------------------------- /StriveFrameData/src/arcsys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/StriveFrameData/src/arcsys.cpp -------------------------------------------------------------------------------- /StriveFrameData/src/bbscript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/StriveFrameData/src/bbscript.cpp -------------------------------------------------------------------------------- /StriveFrameData/src/bind_watcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/StriveFrameData/src/bind_watcher.cpp -------------------------------------------------------------------------------- /StriveFrameData/src/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/StriveFrameData/src/dllmain.cpp -------------------------------------------------------------------------------- /StriveFrameData/src/draw_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/StriveFrameData/src/draw_utils.cpp -------------------------------------------------------------------------------- /StriveFrameData/src/framebar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/StriveFrameData/src/framebar.cpp -------------------------------------------------------------------------------- /StriveFrameData/src/hitboxes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/StriveFrameData/src/hitboxes.cpp -------------------------------------------------------------------------------- /StriveFrameData/src/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/StriveFrameData/src/menu.cpp -------------------------------------------------------------------------------- /StriveFrameData/src/sigscan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/StriveFrameData/src/sigscan.cpp -------------------------------------------------------------------------------- /docs/readme_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/docs/readme_banner.png -------------------------------------------------------------------------------- /prereqs/FText_Constructor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/prereqs/FText_Constructor.lua -------------------------------------------------------------------------------- /prereqs/UE4SS-settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/prereqs/UE4SS-settings.ini -------------------------------------------------------------------------------- /prereqs/Unverum Installation Instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/prereqs/Unverum Installation Instructions.txt -------------------------------------------------------------------------------- /prereqs/mods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sevoii/StriveFrameViewer/HEAD/prereqs/mods.txt --------------------------------------------------------------------------------