mirror of
https://github.com/zaaarf/lillero-loader.git
synced 2024-11-13 01:19:18 +01:00
docs: added installation to README
This commit is contained in:
parent
8a6c46f03e
commit
18bcd05348
1 changed files with 31 additions and 0 deletions
31
README.md
31
README.md
|
@ -20,3 +20,34 @@ Basically, our `ILaunchPluginService` implements 3 methods which are called in 3
|
|||
* `processClassWithFlags()` : will be called for each game class which was signaled before, allowing to apply modifications to it.
|
||||
|
||||
*Technically, `handlesClass()` and `processClassWithFlags()` are called concurrently, but assuming they don't make the explanation easier.*
|
||||
|
||||
# Installation
|
||||
Right now the only way to include this loader in your Minecraft instance is to modify the launch profile adding it to the loaded classes.
|
||||
|
||||
### MultiMC / PolyMC / PrismLauncher
|
||||
Edit your target instance and go into "Versions". Select "Forge", click "Customize" and then "Edit". A text editor should open on a json file. Inside the `libraries` array add the following objects:
|
||||
```json
|
||||
{
|
||||
"downloads": {
|
||||
"artifact": {
|
||||
"sha1": "3f51da8dd7df6044190f1fe86500b9793d806d0d",
|
||||
"size": 865,
|
||||
"url": "https://maven.fantabos.co/ftbsc/lll/0.0.4/lll-0.0.4.jar"
|
||||
}
|
||||
},
|
||||
"name": "ftbsc:lll:0.0.4"
|
||||
},
|
||||
{
|
||||
"downloads": {
|
||||
"artifact": {
|
||||
"sha1": "2d7b816468af42f81b1b82f8c0ea8f373396ae61",
|
||||
"size": 4193,
|
||||
"url": "https://maven.fantabos.co/ftbsc/lll/loader/0.0.5/loader-0.0.5.jar"
|
||||
}
|
||||
},
|
||||
"name": "ftbsc.lll:loader:0.0.5"
|
||||
},
|
||||
```
|
||||
|
||||
### Vanilla launcher
|
||||
Undocumented at current time
|
||||
|
|
Loading…
Reference in a new issue