This repository has been archived by the owner on Apr 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 52
Installing Rift in a MultiMC instance
gbui edited this page Aug 5, 2018
·
8 revisions
- Make a new instance in MultiMC with with the wanted version of Minecraft—in our case, Minecraft 1.13.
- Click
Edit Instance
—it should open theVersion
page of the instance. - Click
Add Empty
. - Set uid to
org.dimdev.rift
and name toRift
. - Select the newly created component and click
Edit
—this should open the file in a text editor. - Edit the JSON to look like one of the examples below, then save the file.
- Launch the instance from MultiMC.
If the example doesn't fit the Rift version exactly, change the version. For example, replace all occurrences of 1.0.2-35
with 1.0.2-33
.
You can use the version page to check the file for errors—obvious mistakes will show up in the Version
page as soon as you click the Refresh
button.
If the JSON file doesn't open in a text editor, make sure your operating system is set up to open .json
files in one first.
{
"+tweakers": [
"org.dimdev.riftloader.launch.RiftLoaderTweaker"
],
"formatVersion": 1,
"+libraries": [
{
"name": "org.dimdev.rift:Rift:1.0.1",
"url": "https://www.dimdev.org/maven/"
},
{
"name": "org.dimdev:mixin:0.7.11-SNAPSHOT",
"url": "https://www.dimdev.org/maven/"
},
{
"name": "org.ow2.asm:asm:6.2",
"url": "http://repo1.maven.org/maven2/"
},
{
"name": "org.ow2.asm:asm-commons:6.2",
"url": "http://repo1.maven.org/maven2/"
},
{
"name": "org.ow2.asm:asm-tree:6.2",
"url": "http://repo1.maven.org/maven2/"
},
{
"name": "net.minecraft:launchwrapper:1.12"
}
],
"mainClass": "net.minecraft.launchwrapper.Launch",
"name": "Rift",
"releaseTime": "2018-07-18T15:11:46+00:00",
"requires": [
{
"equals": "1.13",
"uid": "net.minecraft"
}
],
"uid": "org.dimdev.rift",
"version": "1.0.1"
}
{
"+tweakers": [
"org.dimdev.riftloader.launch.RiftLoaderTweaker"
],
"formatVersion": 1,
"+libraries": [
{
"name": "org.dimdev:rift:1.0.2-35",
"url": "https://www.dimdev.org/maven/"
},
{
"name": "org.dimdev:mixin:0.7.11-SNAPSHOT",
"url": "https://www.dimdev.org/maven/"
},
{
"name": "org.ow2.asm:asm:6.2",
"url": "http://repo1.maven.org/maven2/"
},
{
"name": "org.ow2.asm:asm-commons:6.2",
"url": "http://repo1.maven.org/maven2/"
},
{
"name": "org.ow2.asm:asm-tree:6.2",
"url": "http://repo1.maven.org/maven2/"
},
{
"name": "net.minecraft:launchwrapper:1.12"
}
],
"mainClass": "net.minecraft.launchwrapper.Launch",
"name": "Rift",
"releaseTime": "2018-07-18T15:11:46+00:00",
"requires": [
{
"equals": "1.13",
"uid": "net.minecraft"
}
],
"uid": "org.dimdev.rift",
"version": "1.0.2-35"
}
This page is based on the MultiMC5 wiki page MultiMC and Optifine.