/tauntbot

Audio clip-playing bot for Discord | Celebrate your Victories

Primary LanguageJavaScriptGNU General Public License v3.0GPL-3.0

Taunt Bot 🏆🤖 Celebrate your Victories

David Connected Discord Servers Taunts played this year Uptime Robot ratio (30 days) Support Discord

Taunt Bot is a Discord bot that plays user-uploaded audio tracks on command. For more info on what Taunt Bot does, visit Taunt.Bot.

Running Taunt Bot

Clone this repo, do an npm install, and edit config/config.json to match your desired configuration. In your audio directory, taunt bot is expecting audio files with names following this format: {ID of associated user}_{type (victory|mvp|lose|intro)}.ogg

Once Taunt Bot has been set up, start the bot with node index.js.

Docker

Use the Dockerfile, or grab the latest image from Docker Hub.

At the minimum, the container expects a configuration json file and a directory to retreive audio files from.

Docker Compose Example:

version: '2'

services:
    tauntbot:
        container_name: tauntbot
        image: corysanin/tauntbot
        restart: "always"
        volumes :
            - ./config:/usr/src/app/config
            - ./audio:/usr/src/app/audio
            - ./stats:/usr/src/app/stats