How to create a Content instance
Creating a New Content Instance
To create a new Content instance, you'll need the following:
- Content Release: A .zip file containing all the necessary files for this instance, including mods, configuration files, and more.
- Content JSON: A JSON file containing all the information related to this Content instance.
INFO
Important: Both the .zip file and the JSON file must be publicly accessible via a direct link. Ensure that these files are hosted on a publicly accessible server. Free alternatives will be shown.
Content Instance Example
json
{
"id": "contentexample",
"name": "Content Example",
"bannerURL": "https://i.imgur.com/tL0yHAF.png",
"bgURL": "https://i.imgur.com/tL0yHAF.png",
"mcVer": "1.20.1",
"mcLoader": "forge",
"updateVer": 1,
"updateFileUrl": "https://github.com/Zmito26dev/docs.onelauncher.zmito.eu/releases/download/example/content-example.zip",
"updateKeepedFiles": [
"assets",
"forge",
"cache",
"libraries",
"resourcepacks",
"saves",
"screenshots",
"journeymap",
"options.txt"
]
}The ZIP file for the Content instance is detailed in updateFileUrl. You can also download and review it here.
How To Proceed
For detailed instructions on how to create these files, please proceed to the next page.