+ readme, sanity check

meow
Dominika Liberda 2022-05-19 06:28:57 +02:00
parent 8b71b5b4bd
commit e35e66cc47
2 changed files with 20 additions and 0 deletions

16
README.md Normal file
View File

@ -0,0 +1,16 @@
# curse me
Takes curseforge minecraft modpacks and installs them without the closed-source, glibc-dependent curseforge client.
### Usage
1. Download a ZIP file from curseforge. This is hidden - curse really wants you to use their application. Go to Files -> Main File -> (click on the name) -> `Download` (NOT `Install`)
2. Clone this repository
3. Get an API key, and place it into the `token` file. You can do this legimately (I'll be here all day, we have time) or use `./getToken.sh` which extracts them from the CurseForge Client
4. Launch `parsePack.sh`; e.g. `./parsePack.sh "Above and Beyond-1.3.zip"`. This will download all of the mods.
5. If everything succeeds, a forge installer should pop up after a while. Fabric support is not available at this time.
6. Backup your `~/.minecraft` directory
7. Launch `./install.sh`
8. Profit..?
gosh i love not agreeing to TOS

View File

@ -1,4 +1,8 @@
#!/bin/bash
if [[ $1 == '' ]]; then
echo "usage: $0 <modpack.zip>"
exit 1
fi
meow="$(realpath $1)"
mkdir packwrk; cd packwrk