A simple Discord bot
Find a file
2024-12-30 21:02:32 -06:00
.gitignore working bot 2024-12-08 03:49:36 +00:00
app.js add catfact function 2024-12-30 21:02:32 -06:00
command_impls.js try https for request 2024-12-30 20:58:25 -06:00
commands.js try https for request 2024-12-30 20:58:25 -06:00
message-scheduler.js Add Buttons; Remove Unschedule Command (#5) 2024-12-11 21:40:39 -06:00
package-lock.json try https for request 2024-12-30 20:58:25 -06:00
package.json try https for request 2024-12-30 20:58:25 -06:00
README.md Update README.md 2024-12-11 21:45:21 -06:00

Sily Bot

A bot that automates silliness.

How to run

  1. Create a new bot at https://discord.com/developers/applications/
  2. Set your Interactions Endpoint URL here: https://discord.com/developers/applications/<id>/information
  3. Download the latest version of sily-bot from here: https://github.com/JacobJanzen/sily-bot/releases/
  4. Unzip the file and enter the sily-bot-<version> directory.
  5. Populate your .env file:
    APP_ID=<APPLICATION ID>
    DISCORD_TOKEN=<TOKEN>
    PUBLIC_KEY=<PUBLIC KEY>
    TIMEZONE=<TIMEZONE>
    PORT=<PORT> # optional
    
  6. Install dependencies with npm install
  7. Register the bot commands with npm run register
  8. Run the bot with npm run start

Note on accessing the bot

This bot requires that there be a publicly accessible interactions endpoint URL. You're on your own for this as the setup entirely depends on your system. I run an Apache webserver that proxies requests for /sily-bot to http://127.0.0.1:3000/ with the following:

<VirtualHost *:443>
# ...
  SSLProxyEngine on

  <Location /sily-bot>
    ProxyPass http://127.0.0.1:3000/
    ProxyPassReverse http://127.0.0.1:3000/
  </Location>
</VirtualHost>

Current Abilities

Command Description
/pet You can pet sily-bot.
/schedule-message <message> <cron> Schedule a message to be send later. Works like Linux cron jobs in the format second minute hour day month weekday. Put the number (or name of month or weekday) in each spot. If you want it to run every second, minute, etc. instead of once when it reaches the provided number, use a * instead of a number. For instance, to run a job every minute on January 4th, you might use 0 * * 4 January *.