-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
ighack.sh
66 lines (62 loc) · 2.46 KB
/
ighack.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
#bin/bash
#script By Infinity Trickster
#The real creator of core files is not us so the credits
#Goes to real author
#colours
#####3#3#
red='\033[1;31m'
rset='\033[0m'
grn='\033[1;32m'
ylo='\033[1;33m'
blue='\033[1;34m'
cyan='\033[1;36m'
pink='\033[1;35m'
#coding section starts :)
clear
echo
echo '
██╗ ██████╗ ██╗ ██╗ █████╗ ██████╗██╗ ██╗
██║██╔════╝ ██║ ██║██╔══██╗██╔════╝██║ ██╔╝
██║██║ ███╗█████╗███████║███████║██║V1.0 █████╔╝
██║██║ ██║╚════╝██╔══██║██╔══██║██║ ██╔═██╗
██║╚██████╔╝ ██║ ██║██║ ██║╚██████╗██║ ██╗
╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝
' |lolcat
printf "\n"
printf " \e[101m\e[1;77m >> Script By roony << \e[0m\n"
printf "\n"
printf " \e[100m\e[1;77m >> Youtube Channel : \e[1;96m youtube.com/InfinityTrickster \e[100m\e[1;77m << \e[0m\n"
printf "\n"
echo
printf "\e[1;92m[\e[0m\e[1;77m1\e[0m\e[1;92m]\e[0m\e[1;93m Auto Attack\e[0m\n"
printf "\e[1;92m[\e[0m\e[1;77m2\e[0m\e[1;92m]\e[0m\e[1;93m Manual Attack\e[0m\n"
printf "\e[1;92m[\e[0m\e[1;77m3\e[0m\e[1;92m]\e[0m\e[1;93m About\e[0m\n"
printf "\e[1;92m[\e[0m\e[1;77m4\e[0m\e[1;92m]\e[0m\e[1;93m Update\e[0m\n"
printf "\e[1;92m[\e[0m\e[1;77m4\e[0m\e[1;92m]\e[0m\e[1;93m Info\e[0m\n"
printf "\e[1;92m[\e[0m\e[1;77m5\e[0m\e[1;92m]\e[0m\e[1;93m Exit\e[0m\n"
read -p $'\n\e[1;92m[\e[0m\e[1;77m*\e[0m\e[1;92m] Choose an option: \e[0m' option
if [[ $option == 1 || $option == 01 ]]; then
cd $HOME/ighack/main
bash ./auto.sh
elif [[ $option == 2 || $option == 02 ]]; then
cd $HOME/ighack/main
bash ./manual.sh
elif [[ $option == 3 || $option == 03 ]]; then
cd $HOME/ighack/core
bash ./about.sh
elif [[ $option == 4 || $option == 04 ]]; then
cd $HOME/ighack/core
bash ./update.sh
elif [[$option ==5 || $option == 05 ]]; then
cd $HOME/ighack/core
bash ./info.sh
elif [[ $option == 6 ]]; then
exit 1
else
echo
printf "\e[1;93m [>!<] Invalid Selection!\e[0m\n"
sleep 1
echo
fi
exit
esac