From f717740f38322d83dc05568488cbd6671518d384 Mon Sep 17 00:00:00 2001 From: kone <70107937+konekowo@users.noreply.github.com> Date: Mon, 4 Mar 2024 12:25:04 -0500 Subject: [PATCH] change url, split download dependencies and build init --- README.md | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5dcbac4..ebbef1c 100644 --- a/README.md +++ b/README.md @@ -3,20 +3,25 @@ This repository is used to store minecraft 1.8's asset index for easy access. Th For linux only. -## Seperate folder +## Download dependencies +```sh +git clone https://git.eaglercraft.rip/eaglercraft/eaglercraft-1.8.git; wget http://www.modcoderpack.com/files/mcp918.zip; wget https://launcher.mojang.com/v1/objects/0983f08be6a4e624f5d85689d1aca869ed99c738/client.jar; wget https://raw.githubusercontent.com/ThisIsALegitUsername/AssetsIndex/main/1.8.json; sudo apt-get install ffmpeg; cd ../ ``` -git clone https://github.com/eaglerarchive/eaglercraftx-1.8.git; wget http://www.modcoderpack.com/files/mcp918.zip; wget https://launcher.mojang.com/v1/objects/0983f08be6a4e624f5d85689d1aca869ed99c738/client.jar; wget https://raw.githubusercontent.com/ThisIsALegitUsername/AssetsIndex/main/1.8.json; sudo apt-get install ffmpeg; cd ../; chmod +x ./build_init.sh; chmod +x ./build_make_workspace.sh; ./build_init.sh; ./build_make_workspace.sh + +## Init build and make workspace +```sh +chmod +x ./build_init.sh; chmod +x ./build_make_workspace.sh; ./build_init.sh; ./build_make_workspace.sh ``` ## Extract all sources into current dir -``` -git clone https://github.com/lax1dude/eaglercraftx-1.8.git; mv -v ./eaglercraftx-1.8/* ./; cd mcp918; wget http://www.modcoderpack.com/files/mcp918.zip; wget https://launcher.mojang.com/v1/objects/0983f08be6a4e624f5d85689d1aca869ed99c738/client.jar; wget https://raw.githubusercontent.com/ThisIsALegitUsername/AssetsIndex/main/1.8.json; sudo apt-get install ffmpeg; cd ../; chmod +x ./build_init.sh; chmod +x ./build_make_workspace.sh; ./build_init.sh; ./build_make_workspace.sh +```sh +git clone https://git.eaglercraft.rip/eaglercraft/eaglercraft-1.8.git; mv -v ./eaglercraftx-1.8/* ./; cd mcp918; wget http://www.modcoderpack.com/files/mcp918.zip; wget https://launcher.mojang.com/v1/objects/0983f08be6a4e624f5d85689d1aca869ed99c738/client.jar; wget https://raw.githubusercontent.com/ThisIsALegitUsername/AssetsIndex/main/1.8.json; sudo apt-get install ffmpeg; cd ../; chmod +x ./build_init.sh; chmod +x ./build_make_workspace.sh; ./build_init.sh; ./build_make_workspace.sh ``` ## Create new offline download -``` +```sh cd javascript; rm EaglercraftX_1.8_Offline_en_US.html; rm EaglercraftX_1.8_Offline_International.html; rm Resent_EaglercraftX_1.8_US.html; rm; Resent_EaglercraftX_1.8_International.html; cd ../; ./MakeOfflineDownload.sh; cd javascript; mv EaglercraftX_1.8_Offline_en_US.html Resent_EaglercraftX_1.8_US.html; mv EaglercraftX_1.8_Offline_International.html Resent_EaglercraftX_1.8_International.html; ```