playcord
v1.0.0
Published
playcord is an epic discord.js package which allows you to make an epic discord bot with some fun features :D!
Downloads
6
Maintainers
Readme
Introduction:
playcord is an epic discord.js package which allows you to make an epic discord bot with some fun features :D!
npm install playcord
Example Usage:
const discord = require('discord.js')
const playcord = require('playcord')
const client = new discord.Client({intents: ['Guilds', 'GuildMessages']})
client.on('messageCreate', (msg) => {
if (msg.content.startsWith('!numberguess')) {
await playcord.GuessTheNumber(msg, 100)
}
if (msg.content.startsWith('!reactfast')) {
await playcord.ReactFast(msg)
}
if (msg.content.startsWith('!typeit')) {
await playcord.TypeIt(msg)
}
if (msg.content.startsWith('!pokeguess')) {
await playcord.WhosThatPokemon(msg)
}
})