-
Notifications
You must be signed in to change notification settings - Fork 0
/
ForgeAndModsInstaller.bat
48 lines (48 loc) · 2.76 KB
/
ForgeAndModsInstaller.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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 :)
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
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 Installing Forge Please Click On Install Client!
java -jar .\files\forgeinstaller\ForgeInstaller.jar
echo Operation Done :)
pause