Menyoo PC - DOWNLOAD LATEST RELEASE
Menyoo PC - DOWNLOAD LATEST PRE-RELEASE
- OpenIV and its ASI Loader
- ScriptHookV by Alexander Blade
- Battleye disabled in the Rockstar Launcher Settings
- GTA V Legacy Version 3095.0 or newer OR GTA V Enhanced
- Visual Studio 2022 (tested with v17.14.19) with the Desktop development with C++ workload
- Windows 10/11 SDK (installed with the VS workload above)
- Git (for cloning with submodules)
The repo uses git submodules for pugixml, simpleini, dirent, and MinHook. Clone recursively so they're pulled in automatically:
git clone --recurse-submodules https://github.com/itsjustcurtis/MenyooSP.gitIf you already cloned without --recurse-submodules, pull the submodules in afterwards:
git submodule update --init --recursiveThe Visual Studio solution and project files are generated by Premake5 and are gitignored. From the repo root run:
generate.batThis produces Solution/Menyoo.sln, Solution/Menyoo.vcxproj, and Solution/Menyoo.vcxproj.filters. Re-run it whenever you edit premake5.lua or add new source files outside Solution/source/.
Open Solution/Menyoo.sln in Visual Studio 2022 and build the Release | x64 configuration, or from a Developer Command Prompt:
msbuild /m /p:Configuration=Release /p:Platform=x64 Solution\Menyoo.slnOutput:
- Release:
Solution/source/_Build/bin/Release/Menyoo.asi - Debug:
Solution/source/bin/Debug/Menyoo.asi
Menyoo links the dynamic Visual C++ runtime (/MD). Targets must have the Microsoft Visual C++ Redistributable (x64) installed — Steam-installed GTA V already ships it, so end users normally don't need to install anything extra.
Copy the Menyoo.asi file along with the menyooStuff folder to the Grand Theft Auto V game directory.
IMPORTANT: Please make sure that you have asiloader and ScriptHookV installed and that they are up to date.
vM.m.p-a/b/rcN
- M - Major: Changes to the core running of the script, and may not be compatible with older builds.
- m - Minor: Feature update that adds functionality to the .asi only
- p - Patch: Bug fixes with no new features.
- a - Alpha: Unstable pre-release with new features not fully tested
- b - Beta: Stable pre-release released for beta testing
- rc - Release Candidate: Stable pre-release with no planned changes ready for public release
- N - Iteration: Numerical iteration of pre-release.
Compiled binary material can be found at releases.
The majority of the source code is licensed under the GNU GPL v3 license. Source content taken from other projects is tagged with the respective license(s) wherever found.