{"id":18604820,"url":"https://github.com/x-rays5/gta_base","last_synced_at":"2026-06-20T01:31:37.033Z","repository":{"id":259875758,"uuid":"466636271","full_name":"X-rays5/gta_base","owner":"X-rays5","description":"A mod menu for GTAV.","archived":false,"fork":false,"pushed_at":"2026-04-04T20:15:47.000Z","size":22062,"stargazers_count":1,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-04-04T22:37:50.202Z","etag":null,"topics":["base","cheat","cpp","dll","game-hack","gta5","gtav"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/X-rays5.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-03-06T04:33:37.000Z","updated_at":"2026-04-04T20:15:50.000Z","dependencies_parsed_at":"2024-10-28T15:24:59.948Z","dependency_job_id":"af946cc7-f059-415f-8869-6b89c260ed74","html_url":"https://github.com/X-rays5/gta_base","commit_stats":null,"previous_names":["x-rays5/gta_base"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/X-rays5/gta_base","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/X-rays5%2Fgta_base","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/X-rays5%2Fgta_base/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/X-rays5%2Fgta_base/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/X-rays5%2Fgta_base/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/X-rays5","download_url":"https://codeload.github.com/X-rays5/gta_base/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/X-rays5%2Fgta_base/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34554511,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-19T02:00:06.005Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["base","cheat","cpp","dll","game-hack","gta5","gtav"],"created_at":"2024-11-07T02:19:05.377Z","updated_at":"2026-06-20T01:31:37.028Z","avatar_url":"https://github.com/X-rays5.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GTA Base Project\n\n## Overview\n\n**GTA Base** is a mod menu for GTA V.\n\n## Project Structure\n\n- **`common/`**: Contains code shared between all other components. This includes utilities for string formatting, concurrency controls, virtual file system management, exception logging, memory operations, and Windows API wrappers. It serves as the foundational library that abstracts away complex or repetitive logic from the main feature modules.\n- **`imfont/`**: A component to help with loading fonts and merging Font Awesome icons into ImGui font atlases. It provides utilities for managing custom fonts and icons used in the UI.\n- **`injector/`**: A standalone executable responsible for attaching natively to the game. It's a simple injector using VirtualAlloc and LoadLibrary.\n- **`native_gen/`**: A Python script to generate the files needed to make the native invoker work.\n- **`rage/`**: Internal classes from GTA V.\n- **`menu/`**: The main menu component compiled into the dll that's injected into the game.\n\n## Toolchain \u0026 Dependencies\n\n- **Compiler**: Exclusively natively supported by the MSVC (Microsoft Visual C++) toolchain due to extensive Win32 API and memory manipulation techniques utilized. \n- **C++ Version**: Targets C++23.\n- **Build System**: CMake 3.16+ coupled heavily with `get_cpm.cmake` (CMake Package Manager) for rapid, implicit vendor dependency fetching directly from GitHub rather than manual vendoring.\n- **Third-Party Integrations**: Relies on components defined in `vendor/` CMake modules including, but not limited to:\n  - `fmt` (string formatting)\n  - `imgui` (graphical interface)\n  - `polyhook_2_0` (function detouring and IAT/VMT hooking)\n  - `discord-rpc` (user status integrations)\n  - `spdlog` (fast, concurrent logging)\n\n## Building the Project\n\n### Prerequisites\n- Install CMake (\u003e= 3.16)\n- Install Visual Studio 2022+ with \"Desktop development with C++\" workload (incorporating MSBuild, MSVC, and Windows SDK).\n\n### Build Procedure\n1. Clone the project to your local drive.\n2. From the project root, configure with CMake. If using CLion, ensure the toolchain selected is MSVC.\n   ```bash\n   cmake -B cmake-build-release -G \"Visual Studio 17 2022\" -T v143\n   ```\n3. Build the project targets natively via CMake:\n   ```bash\n   cmake --build cmake-build-release --config Release\n   ```\n4. Find the built artifacts within your generated binary folder.\n   - Run the compiled `injector.exe` to inject `menu.dll` directly into the target process.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fx-rays5%2Fgta_base","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fx-rays5%2Fgta_base","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fx-rays5%2Fgta_base/lists"}