UNPKG

@m3rcena/weky

Version:

A fun npm package to play games within Discord with buttons!

230 lines (229 loc) 9.3 kB
import chalk from "chalk"; import { ActionRowBuilder, ButtonBuilder, ButtonStyle, ComponentType } from "discord.js"; import { decode } from "html-entities"; import { checkPackageUpdates, convertTime, createEmbed, getRandomString } from "../functions/functions.js"; import { OptionsChecking } from "../functions/OptionChecking.js"; const LieSwatter = async (options) => { // Check types OptionsChecking(options, "LieSwatter"); let interaction; if (options.interaction.author) { interaction = options.interaction; } else { interaction = options.interaction; } if (!interaction) throw new Error(chalk.red("[@m3rcena/weky] LieSwatter Error:") + " No interaction provided."); if (!interaction.channel || !interaction.channel.isSendable()) throw new Error(chalk.red("[@m3rcena/weky] LieSwatter Error:") + " No channel found."); let client = options.client; let id = ""; if (options.interaction.author) { id = options.interaction.author.id; } else { id = options.interaction.user.id; } ; const id1 = getRandomString(20) + "-" + getRandomString(20); const id2 = getRandomString(20) + "-" + getRandomString(20); if (!options.winMessage) options.winMessage = "GG, It was a **{{answer}}**. You got it correct in **{{time}}**."; if (typeof options.winMessage !== "string") { throw new Error(chalk.red("[@m3rcena/weky] LieSwatter TypeError:") + " Win message must be a string."); } ; if (!options.loseMessage) options.loseMessage = "Better luck next time! It was a **{{answer}}**."; if (typeof options.loseMessage !== "string") { throw new Error(chalk.red("[@m3rcena/weky] LieSwatter TypeError:") + " Lose message must be a string."); } ; if (!options.othersMessage) options.othersMessage = "Only <@{{author}}> can use the buttons!"; if (typeof options.othersMessage !== "string") { throw new Error(chalk.red("[@m3rcena/weky] LieSwatter TypeError:") + " Others message must be a string."); } ; if (!options.buttons) options.buttons = { true: "Truth", lie: "Lie" }; if (typeof options.buttons !== "object") { throw new Error(chalk.red("[@m3rcena/weky] LieSwatter TypeError:") + " Buttons must be an object."); } ; if (!options.buttons.true) options.buttons.true = "Truth"; if (typeof options.buttons.true !== "string") { throw new Error(chalk.red("[@m3rcena/weky] LieSwatter TypeError:") + " True button text must be a string."); } ; if (!options.buttons.lie) options.buttons.lie = "Lie"; if (typeof options.buttons.lie !== "string") { throw new Error(chalk.red("[@m3rcena/weky] LieSwatter TypeError:") + " Lie button text must be a string."); } ; if (!options.thinkMessage) options.thinkMessage = "I am thinking..."; if (typeof options.thinkMessage !== "string") { throw new Error(chalk.red("[@m3rcena/weky] LieSwatter TypeError:") + " Think message must be a string."); } ; options.embed.description = options.thinkMessage; let embed = createEmbed(options.embed); const msg = await interaction.reply({ embeds: [embed] }); const result = await fetch(`https://opentdb.com/api.php?amount=1&type=boolean`).then((res) => res.json()); const question = result.results[0]; let answer; let winningID; if (question.correct_answer === "True") { winningID = id1; answer = options.buttons.true; } else { winningID = id2; answer = options.buttons.lie; } ; let btn1 = new ButtonBuilder() .setCustomId(id1) .setLabel(options.buttons.true) .setStyle(ButtonStyle.Primary); let btn2 = new ButtonBuilder() .setCustomId(id2) .setLabel(options.buttons.lie) .setStyle(ButtonStyle.Primary); options.embed.description = decode(question.question); embed = createEmbed(options.embed); await msg.edit({ embeds: [embed], components: [ new ActionRowBuilder().addComponents(btn1, btn2) ] }); const gameCreatedAt = Date.now(); const gameCollector = msg.createMessageComponentCollector({ componentType: ComponentType.Button, time: 60000 }); gameCollector.on("collect", async (button) => { if (button.user.id !== id) { return button.reply({ content: options.othersMessage ? options.othersMessage.replace(`{{author}}`, id) : "Only <@" + id + "> can use the buttons!", ephemeral: true }); } await button.deferUpdate(); if (button.customId === winningID) { btn1 = new ButtonBuilder() .setCustomId(id1) .setLabel(options.buttons ? options.buttons.true : "Truth") .setDisabled(); btn2 = new ButtonBuilder() .setCustomId(id2) .setLabel(options.buttons ? options.buttons.lie : "Lie") .setDisabled(); gameCollector.stop(); if (winningID === id1) { btn1.setStyle(ButtonStyle.Success); btn2.setStyle(ButtonStyle.Danger); } else { btn1.setStyle(ButtonStyle.Danger); btn2.setStyle(ButtonStyle.Success); } embed.setTimestamp(options.embed.timestamp ? new Date() : null); await msg.edit({ embeds: [embed], components: [new ActionRowBuilder().addComponents(btn1, btn2)] }); const time = convertTime(Date.now() - gameCreatedAt); options.embed.description = options.winMessage ? options.winMessage .replace(`{{answer}}`, decode(answer)) .replace(`{{time}}`, time) : `GG, It was a **${decode(answer)}**. You got it correct in **${time}**.`; const winEmbed = createEmbed(options.embed); if (!interaction.channel || !interaction.channel.isSendable()) return; await interaction.channel.send({ embeds: [winEmbed] }); } else { btn1 = new ButtonBuilder() .setCustomId(id1) .setLabel(options.buttons ? options.buttons.true : "Truth") .setDisabled(); btn2 = new ButtonBuilder() .setCustomId(id2) .setLabel(options.buttons ? options.buttons.lie : "Lie") .setDisabled(); gameCollector.stop(); if (winningID === id1) { btn1.setStyle(ButtonStyle.Success); btn2.setStyle(ButtonStyle.Danger); } else { btn1.setStyle(ButtonStyle.Danger); btn2.setStyle(ButtonStyle.Success); } embed.setTimestamp(options.embed.timestamp ? new Date() : null); await msg.edit({ embeds: [embed], components: [new ActionRowBuilder().addComponents(btn1, btn2)] }); options.embed.description = options.loseMessage ? options.loseMessage.replace('{{answer}}', decode(answer)) : `Better luck next time! It was a **${decode(answer)}**.`; const lostEmbed = createEmbed(options.embed); if (!interaction.channel || !interaction.channel.isSendable()) return; await interaction.channel.send({ embeds: [lostEmbed] }); } }); gameCollector.on("end", async (collected, reason) => { if (reason === "time") { btn1 = new ButtonBuilder() .setCustomId(id1) .setLabel(options.buttons ? options.buttons.true : "Truth") .setDisabled(); btn2 = new ButtonBuilder() .setCustomId(id2) .setLabel(options.buttons ? options.buttons.lie : "Lie") .setDisabled(); if (winningID === id1) { btn1.setStyle(ButtonStyle.Success); btn2.setStyle(ButtonStyle.Danger); } else { btn1.setStyle(ButtonStyle.Danger); btn2.setStyle(ButtonStyle.Success); } embed.setTimestamp(options.embed.timestamp ? new Date() : null); await msg.edit({ embeds: [embed], components: [new ActionRowBuilder().addComponents(btn1, btn2)] }); options.embed.description = options.loseMessage ? options.loseMessage.replace('{{answer}}', decode(answer)) : `**You run out of Time**\nBetter luck next time! It was a **${decode(answer)}**.`; const lostEmbed = createEmbed(options.embed); if (!interaction.channel || !interaction.channel.isSendable()) return; await interaction.channel.send({ embeds: [lostEmbed] }); } }); checkPackageUpdates("LieSwatter", options.notifyUpdate); }; export default LieSwatter;