Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/i5ucc/melonautolaunch
A universal melonloader mod that automatically launches and closes specified external programs with the game.
https://github.com/i5ucc/melonautolaunch
chilloutvr cvr-mod melonloader melonloader-mod melonloader-universal-mod
Last synced: about 2 months ago
JSON representation
A universal melonloader mod that automatically launches and closes specified external programs with the game.
- Host: GitHub
- URL: https://github.com/i5ucc/melonautolaunch
- Owner: I5UCC
- License: mit
- Created: 2022-06-05T18:29:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-03T13:57:35.000Z (over 2 years ago)
- Last Synced: 2024-10-09T09:41:54.184Z (3 months ago)
- Topics: chilloutvr, cvr-mod, melonloader, melonloader-mod, melonloader-universal-mod
- Language: C#
- Homepage:
- Size: 49.8 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# MelonAutoLaunch
A universal melonloader mod that automatically launches and closes specified external programs with the game.# Known Issues
- Programs that are not closed when quit will cause Steam to think the game is still running.
# Usage
To add a program to your Autolaunch, you need to edit the [GameFolder]/UserData/AutoStartConfig.json file. This file is being generated right when you start the game with the mod installed for the first time.
It looks as follows:
```
{
"ProgramList": [
{
"FilePath": "",
"Arguments": "",
"StartMinimized": false,
"CloseOnQuit": false,
"VROnly": true
}
]
}
```
***"FilePath":*** You need to add the **full path** to executable (.exe file)
***"Arguments":*** if you need any, can leave empty.
***"StartMinimized":*** determines if the program should be started minimized or normally.
***"CloseOnQuit":*** determines if the program should close whenever the game is closed. Values are either false or true.
***"VROnly":*** determines if the program should be autostarted only in VR or always. Values are either false or true.### Example:
```
{
"ProgramList": [
{
"FilePath": "path/to/executable1",
"Arguments": "",
"StartMinimized": false,
"CloseOnQuit": false,
"VROnly": true
},
{
"FilePath": "path/to/executable2",
"Arguments": "",
"StartMinimized": true,
"CloseOnQuit": true,
"VROnly": false
},
{
"FilePath": "path/to/executable3",
"Arguments": "--debug",
"StartMinimized": false,
"CloseOnQuit": true,
"VROnly": true
}
]
}
```### MelonLoader
Need to install MelonLoader?
Click [this link](https://melonwiki.xyz/#/?id=automated-installation) to get started!### Prerequisites
MelonLoader: v0.5.4### CVR Disclaimer
Me and this modification are in no affiliation with ABI and not supported by ABI.