aboutsummaryrefslogtreecommitdiff
path: root/runbeta.cmd
diff options
context:
space:
mode:
authorTrey <trey6979@gmail.com>2018-04-06 13:37:22 -0400
committerTrey <trey6979@gmail.com>2018-04-06 13:37:22 -0400
commit20b860bb2299d4a45aa9899fcab2b340cbe9a0b5 (patch)
tree4022b84287f9df17854947a6f6ae98665719f209 /runbeta.cmd
parentb85b686829798f29f5f19fe919ae8807ef9ad69c (diff)
parente39d116465334ce84ee06267e8defb6007dddf22 (diff)
downloadPokeBot-20b860bb2299d4a45aa9899fcab2b340cbe9a0b5.tar.gz
PokeBot-20b860bb2299d4a45aa9899fcab2b340cbe9a0b5.tar.bz2
PokeBot-20b860bb2299d4a45aa9899fcab2b340cbe9a0b5.zip
Merge branch 'master' of https://github.com/PokeWorld/PokeBot
Diffstat (limited to 'runbeta.cmd')
-rw-r--r--runbeta.cmd24
1 files changed, 0 insertions, 24 deletions
diff --git a/runbeta.cmd b/runbeta.cmd
deleted file mode 100644
index 82c8938..0000000
--- a/runbeta.cmd
+++ /dev/null
@@ -1,24 +0,0 @@
-@echo off
-
-title PokeBot Beta 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 test.js
-goto a