blob: ca435d1fa9c9469bedb18b59a6a9761694a2ab43 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
@echo off
title PokeBot Console
echo ------------------------------
echo |Welcome to PokeBot Console! |
echo |If you ran this without |
echo |changing the token, you have|
echo |made an error. You are |
echo |supposed to navigate to the |
echo |config.json file, and change|
echo |the token to your bot user's|
echo |token. After that, you have |
echo |managed to successfully self|
echo |host PokeBot! |
echo ------------------------------
:a
git pull
node bot.js
goto a
|