├── .github └── workflows │ └── cmake-multi-platform.yml ├── .gitignore ├── CMakeLists.txt ├── README.md ├── cmake ├── FindBotan.cmake ├── cpr.cmake ├── cxxopts.cmake ├── fmt.cmake └── rapidjson.cmake ├── scripts └── generate_json_from_all_tunable_files.py └── src ├── CMakeLists.txt ├── Inc.hpp ├── Keys.hpp ├── Main.cpp ├── NGDec.cpp ├── NGDec.hpp ├── NGTables.cpp ├── OldAnticheat.cpp ├── OldAnticheat.hpp └── SigTypes.hpp /.github/workflows/cmake-multi-platform.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yubie-re/gtav-sigscan/HEAD/.github/workflows/cmake-multi-platform.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | /.vscode/ 3 | /tunables/ 4 | .txt 5 | .json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yubie-re/gtav-sigscan/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yubie-re/gtav-sigscan/HEAD/README.md -------------------------------------------------------------------------------- /cmake/FindBotan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yubie-re/gtav-sigscan/HEAD/cmake/FindBotan.cmake -------------------------------------------------------------------------------- /cmake/cpr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yubie-re/gtav-sigscan/HEAD/cmake/cpr.cmake -------------------------------------------------------------------------------- /cmake/cxxopts.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yubie-re/gtav-sigscan/HEAD/cmake/cxxopts.cmake -------------------------------------------------------------------------------- /cmake/fmt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yubie-re/gtav-sigscan/HEAD/cmake/fmt.cmake -------------------------------------------------------------------------------- /cmake/rapidjson.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yubie-re/gtav-sigscan/HEAD/cmake/rapidjson.cmake -------------------------------------------------------------------------------- /scripts/generate_json_from_all_tunable_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yubie-re/gtav-sigscan/HEAD/scripts/generate_json_from_all_tunable_files.py -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yubie-re/gtav-sigscan/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yubie-re/gtav-sigscan/HEAD/src/Inc.hpp -------------------------------------------------------------------------------- /src/Keys.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yubie-re/gtav-sigscan/HEAD/src/Keys.hpp -------------------------------------------------------------------------------- /src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yubie-re/gtav-sigscan/HEAD/src/Main.cpp -------------------------------------------------------------------------------- /src/NGDec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yubie-re/gtav-sigscan/HEAD/src/NGDec.cpp -------------------------------------------------------------------------------- /src/NGDec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yubie-re/gtav-sigscan/HEAD/src/NGDec.hpp -------------------------------------------------------------------------------- /src/NGTables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yubie-re/gtav-sigscan/HEAD/src/NGTables.cpp -------------------------------------------------------------------------------- /src/OldAnticheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yubie-re/gtav-sigscan/HEAD/src/OldAnticheat.cpp -------------------------------------------------------------------------------- /src/OldAnticheat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yubie-re/gtav-sigscan/HEAD/src/OldAnticheat.hpp -------------------------------------------------------------------------------- /src/SigTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yubie-re/gtav-sigscan/HEAD/src/SigTypes.hpp --------------------------------------------------------------------------------