aboutsummaryrefslogtreecommitdiff
path: root/run_win.bat
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2025-03-02 01:04:07 -0500
committerAndrew Lee <andrew@alee14.me>2025-03-02 01:04:07 -0500
commit9d2e7b26ad067fd13fb6862eb48a6b86a5bb8afd (patch)
tree3c0b55a6185c3c03a73dc3b2899dfc221c06f942 /run_win.bat
parent7df6aafb17a79f278047a244d48c9fdde620811d (diff)
downloadAleeBot-9d2e7b26ad067fd13fb6862eb48a6b86a5bb8afd.tar.gz
AleeBot-9d2e7b26ad067fd13fb6862eb48a6b86a5bb8afd.tar.bz2
AleeBot-9d2e7b26ad067fd13fb6862eb48a6b86a5bb8afd.zip
Starting AleeBot 4.0!
Diffstat (limited to 'run_win.bat')
-rw-r--r--run_win.bat48
1 files changed, 0 insertions, 48 deletions
diff --git a/run_win.bat b/run_win.bat
deleted file mode 100644
index 4fd4f85..0000000
--- a/run_win.bat
+++ /dev/null
@@ -1,48 +0,0 @@
-@echo off
-title AleeBot Console
-:main
-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.
-set /p start=user@AleeBot:~$
-if %start% == Yes goto a
-if %start% == yes goto a
-if %start% == y goto a
-if %start% == debug goto ad
-if %start% == beta goto ab
-if %start% == no goto cexit
-if %start% == No goto cexit
-if %start% == exit goto cexit
-if %start% == easteregg goto easter
-if %start% == other goto error
-:error
-echo Bad command
-echo.
-pause>nul
-cls
-goto main
-:a
-git pull
-node bot_discord.js
-goto a
-:ad
-echo.
-git pull
-node bot_discord.js --debug
-goto ad
-:ab
-git pull
-node bot_discord.js --beta
-goto ab
-:easter
-echo Hey... there is no easter egg...
-cls
-goto main
-:cexit
-echo Exiting...
-pause>nul
-exit