An Open-source Discord Mini-Games Package
Gives you a multiple choice trivia
const {Trivia} = require('discord-mini-games.js');
const gameOptions = {
isSlash: false, // wether the game is a slash command, default: false.
time: 30000, // timeup duration in milliseconds, default: 30000.
difficulty: 'medium', // question difficulty: easy, medium, hard, default: medium .
onWin: () => {console.log("win")}, // Function to execute if player wins the game.
onLose: () => {console.log('lose')}, // Function to execute if player loses the game.
title: 'Trivia', // Embed Title.
winDes: 'You Won!', // Embed Description when player wins the game.
loseDes: 'You Lost', // Embed Description when player loses the game.
timeUpDes: 'Game Over: Timed Out', // Embed Description when game times out.
}
The texts for embed descriptions accepts following formatting.
{answer}
-> Correct Answer.{user_option}
-> option choosen by the Player.{answer}
-> Correct Answer.{user_option}
-> option choosen by the Player.{answer}
-> Correct Answer.
let message = message || interaction; // message object or interaction object.
let gameOptions = "refer previous block";
const game = new Trivia(message,gameOptions); // Initialising the Game.
game.run() // Starting the Game.