djs-misc
v1.0.1
Published
A Discord Package to make Fun Commands for discord Bots
Downloads
6
Readme
About
- A discord.js Utils Package with qrcode and other utility commands! Works With Slash and Normal Commands!
- Join our Support Server for help
Installation
npm i djs-misc
Example usage
USE ACCORDING TO YOUR COMMAND HANDLER
ROAST
NORMAL COMMAND
const { Misc } = require('djs-misc')
const misc = new Misc({
message: message,
embedFooter: "Made With djs-misc", //The Footer of the embed
embedTitle: "Get Roasted", //The title of the embed
embedColor: "RANDOM", //The color of the embed! (Use Hex codes or use the color name)
})
misc.roast()
===
SLASH COMMAND
const { Slash } = require('djs-misc')
const slash = new Slash({
args: args,
slashCommand: true,
interaction: interaction,
embedFooter: "Made With djs-misc", //The Footer of the embed
embedTitle: "Get Roasted!", //The title of the embed
embedColor: "RANDOM", //The color of the embed! (Use Hex codes or use the color name)
})
slash.roast()
DAD JOKE
const { Misc } = require('djs-misc')
const misc = new Misc({
message: message,
embedFooter: "Made With djs-misc", //The Footer of the embed
embedTitle: "Here's a Dad Joke", //The title of the embed
embedColor: "RANDOM", //The color of the embed! (Use Hex codes or use the color name)
})
misc.dadJoke()
===
SLASH COMMAND
const { Slash } = require('djs-misc')
const slash = new Slash({
args: args,
slashCommand: true,
interaction: interaction,
embedFooter: "Made With djs-misc", //The Footer of the embed
embedTitle: "Here's a Dad Joke", //The title of the embed
embedColor: "RANDOM", //The color of the embed! (Use Hex codes or use the color name)
})
slash.dadJoke()
Note:
Please Respect the license and dont just copy the whole thing as paste as your own package!
Updates
You Can use this package with djs-13 by installing djs-utils@dev
Credits
Our Other packages:
- djs-games - A package for discord games
- djs-anime - A package for anime commands
- djs-utils - A package for misc commands