From 9d2e7b26ad067fd13fb6862eb48a6b86a5bb8afd Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sun, 2 Mar 2025 01:04:07 -0500 Subject: Starting AleeBot 4.0! --- run_bash.sh | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 run_bash.sh (limited to 'run_bash.sh') diff --git a/run_bash.sh b/run_bash.sh deleted file mode 100644 index cca71f5..0000000 --- a/run_bash.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/bash -echo 'Welcome to the AleeBot Console.' -echo 'If you want to self-host this bot, please continue by executing the following steps:' -echo '1. Create a tokens.json file and include the token of your bot user so that the bot does not error out when connecting to Discord Servers.' -echo '2. You will need to edit this file that you ran, and remove the "git pull" line. This causes errors as it will try to pull from the AleeBot git.' -echo '3. Finally, you must credit the developers (Alee Productions Developers will work fine).' -echo '--------------------------------------------------------------------------------' -echo "To start the bot when you are ready, type in 'Yes/yes/y' or type in 'debug' to enter debug mode or type in 'beta' to enter beta mode." -while true -do -read -r -p "> " input - -case $input in - [yY] | [yY][eE][sS]) - for (( ; ; )) - do - git pull - node bot_discord.js - sleep 2 - done - ;; - [dD][eE][bB][uU][gG]) - for (( ; ; )) - do - node bot_discord.js --debug - sleep 2 - done - ;; - [bB][eE][tT][aA]) - for (( ; ; )) - do - node bot_discord.js --beta - sleep 2 - done - ;; - [nN] | [nN][oO]) - exit 1 - ;; - *) -echo "Bad command" - ;; -esac - done \ No newline at end of file -- cgit v1.2.3