Updates docs to include the newly required "Bot" infront of bot user tokens. (#266)

This commit is contained in:
Austin Davis 2016-10-04 15:45:36 -06:00 committed by Chris Rhodes
parent 4b9d2e31cc
commit c5abbfa42e
6 changed files with 30 additions and 12 deletions

View file

@ -27,7 +27,7 @@ Usage of ./airhorn:
The below example shows how to start the bot. The below example shows how to start the bot.
```sh ```sh
./airhorn -t <bot token> ./airhorn -t "Bot YOUR_BOT_TOKEN"
``` ```
### Creating sounds ### Creating sounds

View file

@ -37,5 +37,5 @@ Usage of ./ocalfile:
For example to start application with Token and a non-default avatar: For example to start application with Token and a non-default avatar:
```sh ```sh
./localfile -t "YOUR_BOT_TOKEN" -f "./pathtoavatar.jpg" ./localfile -t "Bot YOUR_BOT_TOKEN" -f "./pathtoavatar.jpg"
``` ```

View file

@ -37,5 +37,5 @@ Usage of ./url:
For example to start application with Token and a non-default avatar: For example to start application with Token and a non-default avatar:
```sh ```sh
./url -t "YOUR_BOT_TOKEN" -l "http://bwmarrin.github.io/discordgo/img/discordgo.png" ./url -t "Bot YOUR_BOT_TOKEN" -l "http://bwmarrin.github.io/discordgo/img/discordgo.png"
``` ```

View file

@ -33,3 +33,9 @@ authentication.
```sh ```sh
./mytoken -e EmailHere -p PasswordHere ./mytoken -e EmailHere -p PasswordHere
``` ```
The below example shows how to start the bot using the bot user's token
```sh
./pingpong -t "Bot YOUR_BOT_TOKEN"
```

View file

@ -39,3 +39,9 @@ authentication.
```sh ```sh
./new_basic -e EmailHere -p PasswordHere ./new_basic -e EmailHere -p PasswordHere
``` ```
The below example shows how to start the bot using the bot user's token
```sh
./new_basic -t "Bot YOUR_BOT_TOKEN"
```

View file

@ -38,3 +38,9 @@ authentication.
```sh ```sh
./pingpong -e EmailHere -p PasswordHere ./pingpong -e EmailHere -p PasswordHere
``` ```
The below example shows how to start the bot using the bot user's token
```sh
./pingpong -t "BOT YOUR_BOT_TOKEN"
```