Skip to content

A chatbot for the ACM-SEMO organization's Discord channel

License

Notifications You must be signed in to change notification settings

StaneCobalt/acm-discord-chatbot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Discord Shield Generic badge MIT license

ACM-SEMO Discord Bot

This is a bot for the ACM-SEMO organization's Discord channel.

acm-semo bot

Bot Functionality

  • Display date for next upcoming event
  • Convert Decimal to Binary
  • Convert Binary to Hex
  • Convert Decimal to Hex
  • Fetch the top 3 hottest posts from the programmerhumor subreddit

Packages

Tutorial

Setting up a Discord Bot on Raspbian

This tutorial assumes you've already built a bot and you're now transferring it onto a new Raspberry Pi.

  1. Make sure everything is up to date.

sudo apt-get update

sudo apt-get install build-essential checkinstall libssl-dev

  1. Get node.js and npm. Discord.js requires node version 6 or higher.

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash

  1. Check that it's installed. If you don't see nvm as the response, close and reopen the terminal.

command -v nvm

  1. Install node.js and npm

nvm install 8.11.2

nvm use 8.11.2

nvm alias default node

  1. Navigate to your project folder then type the following.

npm init

Fill out the name of the bot, the version, and description. Set the entry point to app.js You can skip the test, git repo, and keywords by just pressing enter. Fill in the author field, and then tell which license you'd like to use if any. Press Y to continue.

  1. Install the discord api wrapper. You will want to also install opus if you're making a bot that uses audio.

npm install --save discord.js

In my case I also installed these dependencies.

npm install datejs

npm install request

npm install xmlhttprequest

Copy in your app.js, and settings.json files and you're good to go! Use node app.js to start running your bot.

About

A chatbot for the ACM-SEMO organization's Discord channel

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published