-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed Many Things and improved script
- Loading branch information
1 parent
13a63ee
commit 9179e70
Showing
4 changed files
with
89 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,48 @@ | ||
@echo off | ||
echo Please Read "Read Me Before Doing Anything.txt" If u havent already. Script will run in 20secs. You can press CTRL+C To exit and read the file. | ||
echo If You Have Already Read, Please wait 20sec. | ||
timeout /t 20 /nobreak | ||
echo Backing up your old mods to folder "modsbackup" | ||
ren "%appdata%/.minecraft/mods" modsbackup | ||
echo Creating Directories | ||
mkdir "%appdata%/.minecraft/mods" | ||
echo Downloading Files! Please Wait :) | ||
wget -P .\files\forgeinstaller\ https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/ForgeInstaller.jar | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/AutoGG.jar | ||
echo Downloading Forge | ||
wget -P .\files\forgeinstaller\ https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/ForgeInstaller.jar -q | ||
echo Downloading AutoGG | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/AutoGG.jar -q | ||
move "AutoGG.jar" %appdata%/.minecraft/mods/AutoGG.jar | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/BetterChat.jar | ||
echo Downloading BetterChat | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/BetterChat.jar -q | ||
move "BetterChat.jar" %appdata%/.minecraft/mods/BetterChat.jar | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/DungeonRooms.jar | ||
echo Downloading DungeonRooms | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/DungeonRooms.jar -q | ||
move "DungeonRooms.jar" %appdata%/.minecraft/mods/DungeonRooms.jar | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/LobbySounds.jar | ||
echo Downloading LobbySounds | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/LobbySounds.jar -q | ||
move "LobbySounds.jar" %appdata%/.minecraft/mods/LobbySounds.jar | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/NotEnoughCoins.jar | ||
echo Downloading NotEnoughCoins | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/NotEnoughCoins.jar -q | ||
move "NotEnoughCoins.jar" %appdata%/.minecraft/mods/NotEnoughCoins.jar | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/NotEnoughUpdates.jar | ||
echo Downloading NotEnoughUpdates | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/NotEnoughUpdates.jar -q | ||
move "NotEnoughUpdates.jar" %appdata%/.minecraft/mods/NotEnoughUpdates.jar | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/OptiFine.jar | ||
echo Downloading Optifine | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/OptiFine.jar -q | ||
move "OptiFine.jar" %appdata%/.minecraft/mods/OptiFine.jar | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/ScrollableTooltips.jar | ||
echo Downloading ScrollableTooltips | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/ScrollableTooltips.jar -q | ||
move "ScrollableTooltips.jar" %appdata%/.minecraft/mods/ScrollableTooltips.jar | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/Skytils.jar | ||
echo Downloading Skytils | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/Skytils.jar -q | ||
move "Skytils.jar" %appdata%/.minecraft/mods/Skytils.jar | ||
java -jar .\files\forgeinstaller\ForgeInstaller.jar | ||
echo Downloading Patcher | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/Patcher.jar -q | ||
move "Patcher.jar" %appdata%/.minecraft/mods/Patcher.jar | ||
echo Downloading DankerSkyblockMod | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/DankerSkyblockMod.jar -q | ||
move "DankerSkyblockMod.jar" %appdata%/.minecraft/mods/DankerSkyblockMod.jar | ||
echo Installing Forge Please Click On Install Client! | ||
java -jar .\files\forgeinstaller\ForgeInstaller.jar | ||
echo Operation Done :) | ||
pause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
@echo off | ||
echo Please Read "Read Me Before Doing Anything.txt" If u havent already. Script will run in 20secs. You can press CTRL+C To exit and read the file. | ||
echo If You Have Already Read, Please wait 20sec. | ||
timeout /t 20 /nobreak | ||
echo Backing up your old mods to folder "modsbackup" | ||
ren "%appdata%/.minecraft/mods" modsbackup | ||
echo Creating Directories | ||
mkdir "%appdata%/.minecraft/mods" | ||
echo Downloading Files! Please Wait :) | ||
echo Downloading AutoGG | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/AutoGG.jar -q | ||
move "AutoGG.jar" %appdata%/.minecraft/mods/AutoGG.jar | ||
echo Downloading BetterChat | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/BetterChat.jar -q | ||
move "BetterChat.jar" %appdata%/.minecraft/mods/BetterChat.jar | ||
echo Downloading DungeonRooms | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/DungeonRooms.jar -q | ||
move "DungeonRooms.jar" %appdata%/.minecraft/mods/DungeonRooms.jar | ||
echo Downloading LobbySounds | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/LobbySounds.jar -q | ||
move "LobbySounds.jar" %appdata%/.minecraft/mods/LobbySounds.jar | ||
echo Downloading NotEnoughCoins | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/NotEnoughCoins.jar -q | ||
move "NotEnoughCoins.jar" %appdata%/.minecraft/mods/NotEnoughCoins.jar | ||
echo Downloading NotEnoughUpdates | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/NotEnoughUpdates.jar -q | ||
move "NotEnoughUpdates.jar" %appdata%/.minecraft/mods/NotEnoughUpdates.jar | ||
echo Downloading Optifine | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/OptiFine.jar -q | ||
move "OptiFine.jar" %appdata%/.minecraft/mods/OptiFine.jar | ||
echo Downloading ScrollableTooltips | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/ScrollableTooltips.jar -q | ||
move "ScrollableTooltips.jar" %appdata%/.minecraft/mods/ScrollableTooltips.jar | ||
echo Downloading Skytils | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/Skytils.jar -q | ||
move "Skytils.jar" %appdata%/.minecraft/mods/Skytils.jar | ||
echo Downloading Patcher | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/Patcher.jar -q | ||
move "Patcher.jar" %appdata%/.minecraft/mods/Patcher.jar | ||
echo Downloading DankerSkyblockMod | ||
wget https://github.com/Shabbir260505/McModsInstaller/releases/download/Mods/DankerSkyblockMod.jar -q | ||
move "DankerSkyblockMod.jar" %appdata%/.minecraft/mods/DankerSkyblockMod.jar | ||
echo Operation Done :) | ||
pause |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
HEY | ||
This Script Auto Installs Best Mods For Skyblock (1.8.9) Forge! | ||
If u have forge 1.8.9 already installed, Please Double Click On "ModsOnly/ModsUpdater.bat" | ||
Or If u dont have forge 1.8.9 installer, click on "ForgeAndModsInstaller.bat" | ||
To Update Your Mods to latest version, weekly run "ModsOnly/ModsUpdater.bat" | ||
After running the script all of ur old mods will be moved to new folder called 'modsbackup' in .minecraft folder. | ||
You can copy your old mods anytime back from that folder :) | ||
When clicking on .bat, if notepad opens, DO NOT EDIT ANYTHING, and close the notepad and run the .bat file as administrator using right click on file. | ||
Also wget.exe is necessary so do not delete it. | ||
If any problem occurs try contacting me :) |