{"id":21361759,"url":"https://github.com/knah/ml-universalmods","last_synced_at":"2025-07-13T02:32:34.498Z","repository":{"id":39881496,"uuid":"354568133","full_name":"knah/ML-UniversalMods","owner":"knah","description":"Universal (non-game-specific) mods for MelonLoader made by me","archived":false,"fork":false,"pushed_at":"2021-12-19T20:06:46.000Z","size":34,"stargazers_count":46,"open_issues_count":3,"forks_count":11,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-10-31T20:28:12.792Z","etag":null,"topics":["game-mod","game-modding","melonloader","melonloader-mod"],"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/knah.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":null,"support":null}},"created_at":"2021-04-04T14:43:33.000Z","updated_at":"2024-10-25T16:03:04.000Z","dependencies_parsed_at":"2022-09-21T04:42:50.840Z","dependency_job_id":null,"html_url":"https://github.com/knah/ML-UniversalMods","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knah%2FML-UniversalMods","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knah%2FML-UniversalMods/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knah%2FML-UniversalMods/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/knah%2FML-UniversalMods/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/knah","download_url":"https://codeload.github.com/knah/ML-UniversalMods/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225850218,"owners_count":17534067,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["game-mod","game-modding","melonloader","melonloader-mod"],"created_at":"2024-11-22T06:11:26.619Z","updated_at":"2024-11-22T06:11:27.183Z","avatar_url":"https://github.com/knah.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"This repository contains my mods for MelonLoader. Join the [MelonLoader discord](https://discord.gg/2Wn3N2P) for support and more mods!  \nLooking for my VRChat mods? [Look here!](https://github.com/knah/ML-UniversalMods)\n\n## Known limitations\nAll of these mods were compiled against IL2CPP generated assemblies for Unity 2018.4.20. This means they might have compatibility issues with other Unity versions and non-IL2CPP games.\n\n## CoreLimiter\nA mod to automatically limit your game to a certain amount of CPU cores. This can be used to boost performance on some Ryzen CPUs by limiting the game to a single CCX.\nNaturally, limiting the game may reduce maximum possible performance under heavy load, and results are highly dependent on how well the game is multithreaded.\n\nYou should experiment with settings in a CPU-heavy world or scene to measure performance on your specific system. For CPUs with less than 8 cores it might be worth it to reduce used core count or allow hyperthreads.\n\nThis mod is Windows-only. It likely won't do anything on Intel CPUs, but you're free to experiment with it.\n\nSettings:\n* Max Cores (default half the physical cores you have) - the maximum amount of cores that the game may use. 4 is the sweet spot on a 2700X/3700X.\n* Use both hyperthreads - will use both hyperthreads on cores if enabled (otherwise just one)\n* Use first X cores (instead of last) - will use CPU cores starting from first one instead of last one\n* Use specific cores - allows you to specify a comma-separated list of cores (including hyperthreads). Cores are numbered starting from zero, and each hyperthread gets a number, so for a 8-core CPU valid values here would range from 0 to 15. \n\n\n## HWIDPatch\nThis mod allows you to fake your Hardware ID. This mod creates a new ID on launch and saves it for future launches. The ID can be changed in `modprefs.ini` afterwards. Set it to empty string to generate a new one.  \nPrivacy first!\n\n\n## LocalPlayerPrefs\nThis mod moves game settings storage from Windows registry to UserData folder.  \nThis can make using multiple game installs easier by having them not share the same space in the registry.  \nDo note that some settings will stay in registry (the ones that Unity itself uses as opposed to game code).  \nThere's also no import from registry, so any data/settings stored there will need to be configured anew after installing this mod. \n \n## NoSteamAtAll\nMakes the game unable to access Steam. At all.  \nNaturally, this will break all game features dependent on steam (for example logins/user accounts, multiplayer, leaderboards, achievements).  \nIntended for games that don't really need steam, but might abuse it for data collection/targeting/other suspicious activities.\n\n## RuntimeGraphicsSettings\nA mod to allow tweaking some graphics settings at runtime to get those extra few frames.  \nWorks best when your game has an in-game UI for mod settings (as another mod, naturally).\n\nSettings description:\n * -1 on integer settings means \"don't change the default value\"\n * MSAALevel - multi-sampled anti-aliasing level. Valid values are 2, 4 and 8\n * AllowMSAA - toggle MSAA at runtime\n * AnisotropicFiltering - texture anisotropic filtering\n * RealtimeShadows - allow realtime shadows\n * SoftShadows - use soft shadows if shadows are enabled. Soft shadows are more expensive.\n * PixelLights - maximum amount of pixel lights that can affect an object\n * Texture decimation - Reduces texture resolution by 2^(this setting). A value of 0 means full-resolution textures, a value of 1 means half-res, 2 would be quarter res, and so on.\n * GraphicsTier - Unity Graphics Hardware Tier. Valid values are 1, 2 and 3. Only affects shaders loaded after it was changed. \n \n## Installation\nTo install these mods, you will need to install [MelonLoader](https://discord.gg/2Wn3N2P) (discord link, see \\#how-to-install).  \nThen, you will have to put mod .dll files in the `Mods` folder of your game directory\n\n## Building\nTo build these, drop required libraries (found in `\u003cgame dir\u003e/MelonLoader/Managed` after melonloader installation, list found in `Directory.Build.props`) into Libs folder, then use your IDE of choice to build.\n * Libs folder is intended for newest libraries (MelonLoader 0.3.0)\n\n## License\nAll mods here are provided under the terms of [GNU GPLv3 license](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fknah%2Fml-universalmods","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fknah%2Fml-universalmods","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fknah%2Fml-universalmods/lists"}