Skip to content

Commit

Permalink
Create discord-dodobot-v2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
InikoPro authored Jul 14, 2023
1 parent dfc6ead commit 81a3505
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions version/discord-dodobot-v2.3
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
#!/bin/bash

# Name: Discord Dodo bot for Linux
# Version: v2.2
# OS: Ubuntu, Debian, Based-debian

clear
echo "Welcome to Discord Dodo Bot | Linux | v2.2"
PS3='Please enter your number: '
options=("Install Dodo Bot" "Config Dodo Bot" "Start" "Exit")
select opt in "${options[@]}"
do
case $opt in
"Install Dodo Bot")
clear
apt update && apt full-upgrade -y
apt install git curl wget
git clone https://github.com/DodoGames7/Dodo-Bot/tree/v2
curl -sL https://deb.nodesource.com/setup_18.x | bash -
apt update && apt full-upgrade -y
apt install nodejs -y
clear
cd ./Dodo-Bot && npm i aoi.js@6.3.0 && cd
node -v
npm -v
sleep 3
clear
sleep 3
echo "Successfully Installed"
clear && cd && bash discord-dodobot-v2.2
;;
"Config Dodo Bot")
clear && cd && cd ./Dodo-Bot && nano index.js && cd .. && clear && bash discord-dodobot-v2.2
;;
"Start")
clear && cd ./Dodo-Bot && clear && echo To stop, press Ctrl C && node .
;;
"Exit")
exit && clear
;;
*) echo "invalid option $REPLY";;
esac
done

0 comments on commit 81a3505

Please sign in to comment.