aboutsummaryrefslogtreecommitdiff
path: root/run.cmd
diff options
context:
space:
mode:
authorAlee <alee14498@gmail.com>2018-08-02 09:55:09 -0400
committerAlee <alee14498@gmail.com>2018-08-02 09:55:09 -0400
commit73bc4274db4e3b3683a08149d56c4ca7e5762791 (patch)
tree503fa18db0fec7628bf5b83ae85b69fdeca5af8d /run.cmd
parentb18fb14b4e1618327037deeb0582d201f7ca999a (diff)
downloadPokeBot-73bc4274db4e3b3683a08149d56c4ca7e5762791.tar.gz
PokeBot-73bc4274db4e3b3683a08149d56c4ca7e5762791.tar.bz2
PokeBot-73bc4274db4e3b3683a08149d56c4ca7e5762791.zip
Getting rid of the channelCreate module and added the bash loop script
Diffstat (limited to 'run.cmd')
-rw-r--r--run.cmd24
1 files changed, 0 insertions, 24 deletions
diff --git a/run.cmd b/run.cmd
deleted file mode 100644
index 0da9564..0000000
--- a/run.cmd
+++ /dev/null
@@ -1,24 +0,0 @@
-@echo off
-
-title PokeBot Console
-
-echo Welcome to the PokeBot Beta Console.
-echo If you want to self-host this bot, please continue by executing the following steps:
-echo 1. You may need to go into the code and comment out anything that relates to Discord Bot List, as this will cause errors when self-hosting.
-echo 2. Create a config.json file and include the token of your bot user so that the bot does not error out when connecting to Discord Servers.
-echo 3. 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 PokeBot git.
-echo 4. Finally, you must credit the developers (Universe Development Group or PokeWorld Administrators will work fine).
-echo --------------------------------------------------------------------------------
-echo To start the bot when you are ready, type in 'Yes'.
-set /p start=
-
-if %start% == Yes goto a
-
-echo Exiting...
-pause
-exit
-
-:a
-git pull
-node bot.js
-goto a