-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstaller.sh
118 lines (118 loc) · 4.73 KB
/
installer.sh
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#!bin/bash
64bit(){
wget https://github.com/MrFiend179/Flubel-MinecraftBot/releases/download/v1.0/Flubel.MinecraftBot.1.0.0.x64.exe
}
32bit(){
wget https://github.com/MrFiend179/Flubel-MinecraftBot/releases/download/v1.0/Flubel.MinecraftBot.1.0.1.x32.exe
}
srccd(){
wget https://github.com/MrFiend179/Flubel-MinecraftBot/archive/refs/tags/v1.0.tar.gz
}
64bit1(){
wget https://github.com/MrFiend179/Flubel-MinecraftBot/releases/download/v1.0.1/Flubel.MinecraftBot.1.0.1.x64.exe
}
32bit1(){
wget https://github.com/MrFiend179/Flubel-MinecraftBot/releases/download/v1.0.1/Flubel.MinecraftBot.1.0.1.x32.exe
}
srccd1(){
wget https://github.com/MrFiend179/Flubel-MinecraftBot/archive/refs/tags/v1.0.1.tar.gz
}
linux(){
wget https://github.com/MrFiend179/Flubel-MinecraftBot/releases/download/v1.0.1/Flubel.MinecraftBot-1.0.1.AppImage
}
echo "Starting to download Flubel MinecraftBot app :D"
read -n 1 -p $'Press any key to Continue\n'
echo " Starting....."
echo 'Select The System Version/Type'
echo '[1] 64-bit v1.0.0'
echo '[2] 32-bit v1.0.0'
echo '[3] Source Code v1.0.0'
echo '[4] 64-bit v1.0.1'
echo '[5] 64-bit v1.0.1 [Linux]'
echo '[6] 32-bit v1.0.1'
echo '[7] Source Code v1.0.1'
read pass
if [ $pass = '1' ]
then
echo "################################################"
echo "# Downloading Flubel MinecraftBot 1.1.0.x64.exe#"
echo "# #"
echo "# Made by Fiend. (Flubel) #"
echo "################################################"
64bit
echo "################################################"
echo '# Download was Succesful :D #'
echo "################################################"
fi
if [ $pass = '2' ]
then
echo "################################################"
echo "# Downloading Flubel MinecraftBot 1.1.0.x32.exe#"
echo "# #"
echo "# Made by Fiend. (Flubel) #"
echo "################################################"
32bit
echo "################################################"
echo '# Download was Succesful :D #'
echo "################################################"
fi
if [ $pass = '3' ]
then
echo "################################################"
echo "# Downloading Source CodeFlubel MinecraftBot #"
echo "# #"
echo "# Made by Fiend. (Flubel) #"
echo "################################################"
srccd
echo "################################################"
echo '# Download was Succesful :D #'
echo "################################################"
fi
if [ $pass = '4' ]
then
echo "################################################"
echo "# Downloading Flubel MinecraftBot 1.1.1.x64.exe#"
echo "# #"
echo "# Made by Fiend. (Flubel) #"
echo "################################################"
64bit1
echo "################################################"
echo '# Download was Succesful :D #'
echo "################################################"
fi
if [ $pass = '5' ]
then
echo "################################################"
echo "# Downloading Flubel MinecraftBot 1.1.1.x64.exe#"
echo "# For Linux #"
echo "# Made by Fiend. (Flubel) #"
echo "################################################"
linux
echo "################################################"
echo '# Download was Succesful :D #'
echo "################################################"
fi
if [ $pass = '6' ]
then
echo "################################################"
echo "# Downloading Flubel MinecraftBot 1.1.1.x32.exe#"
echo "# #"
echo "# Made by Fiend. (Flubel) #"
echo "################################################"
32bit1
echo "################################################"
echo '# Download was Succesful :D #'
echo "################################################"
fi
if [ $pass = '7' ]
then
echo "################################################"
echo "# Downloading Source CodeFlubel MinecraftBot #"
echo "# #"
echo "# Made by Fiend. (Flubel) #"
echo "################################################"
srccd1
echo "################################################"
echo '# Download was Succesful :D #'
echo "################################################"
fi