discord-trivia
TypeScript icon, indicating that this package has built-in type declarations

3.0.2 • Public • Published

Discord Trivia Logo

Discord Trivia

A package that provides an easy way to create fully-fledged trivia games for Discord bots with Discord.JS. Includes support for +20 categories as well as customizable game settings, themes, and game messages. Comes with a built-in leaderboard system to track scores and rankings!

CHANGELOG

3.0.2

  • Additional bug fixes to answer checking.

Basic Example

import { GameManager } from 'discord-trivia';

const manager = new GameManager();

// -- Inside your command function --
const game = manager.createGame(interaction.channel);

try {
    await game.startQueue(interaction);
} catch (err) {
    console.error(`An error occurred: ${err}`);
}

Custom Questions

const customQuestions = [
  new BooleanQuestion()
    .setValue("discord-trivia is awesome!")
    .setCategory("My epic category")
    .setDifficulty('easy') 
    .setCorrectAnswer('true'),
  new MultipleChoiceQuestion()
    .setValue("What's the best pizza topping?")
    .setCategory("food")
    .setDifficulty('medium')
    .setCorrectAnswer("Chicken feet")
    .setIncorrectAnswers(["Pepperoni", "Sausage", "Olives"])

  // Add more custom questions here...
];

game.config.customQuestions = customQuestions;

game.startQueue(interaction);

Full Guide

Click here to view the full guide

Package Sidebar

Install

npm i discord-trivia

Weekly Downloads

14

Version

3.0.2

License

ISC

Unpacked Size

68.3 kB

Total Files

23

Last publish

Collaborators

  • elitezen