dekuraan / QuoteBot

A discord bot that outputs a random quote upon command

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

QuoteBot TravisGithub All Releases node

ForTheBadge

A discord bot that outputs a random quote upon command

Setup

  1. Get a sweet text editor
  2. Install node.js

Windows

Cholatey it: @powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" into admin CMD then choco install node.js

OR

https://nodejs.org/en/download/

Mac

Homebrew it: /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" then brew install node.js

OR

https://nodejs.org/en/download/

Linux

sudo apt-get install node.js sudo apt-get install npm (or other package manager)

  1. npm install discord.js

  2. npm install infinite-loop

  3. Clone the project (git clone https://github.com/EpicDJL/QuoteBot.git) or download and extract the zip file.

  4. Edit the config file

  5. put the prefix and command of your choice

{
    "prefix": "!",
    "command": "quote",

(This makes the command !quote) 8. create a bot on https://discordapp.com/developers/applications/me then create a bot account:

Bot Creation Gif

  1. copy the "token" and paste it into the config file
{
    "token": "right here :)"
  1. format the quotes so that they each are a seperate line
quote 1
quote 2
quote 3
(no quotations)
  1. got to http://textmechanic.com/text-tools/basic-text-tools/add-prefixsuffix-into-line/ and paste your quotes into the text box
  2. put " in the prefix box and ", into the suffix box, this shoud format your quotes like this
"quote 1",
"quote 2",
"quote 3",
  1. paste it into the quote section in the config file. your config shoould now look like this:
{
    "prefix": "prefix",
    "command": "command",
    "token": "token",
    "quotes":["quote 1",
    "quote 2",
    "quote 3",]
}

now remove the comma from the very last line. 14. create a discord invite by pasting your bot Client Id into where it says CLIENT_ID_GOES_HERE in this link:

https://discordapp.com/oauth2/authorize?client_id=CLIENT_ID_GOES_HERE&scope=bot&permissions=2097176631 

a box should pop up asking you to invite the bot to your discord server. choose which server you want and hit ok Bot Creation Gif

  1. run node quote.js to start the bot, it should output one of the random quotes as sign it is online.
  2. Check your bot by typing the prefix and command you chose into discord.

----------Enjoy-----------

About

A discord bot that outputs a random quote upon command

License:GNU General Public License v3.0


Languages

Language:JavaScript 100.0%