mirror of
https://github.com/Ninluc/Dat_Boi.git
synced 2025-08-09 23:26:13 +02:00
Initial commit
This commit is contained in:
40
commands/Divers/embed.txt
Executable file
40
commands/Divers/embed.txt
Executable file
@ -0,0 +1,40 @@
|
||||
const { MessageEmbed } = require("discord.js");
|
||||
const config = require("../../botconfig/config.json");
|
||||
const ee = require("../../botconfig/embed.json");
|
||||
module.exports = {
|
||||
name: "embed",
|
||||
category: "Administration",
|
||||
aliases: ["say-embed"],
|
||||
cooldown: 2,
|
||||
usage: "embed <TITLE> ++ <DESCRIPTION>",
|
||||
description: "Resends a message from you as an Embed",
|
||||
run: async (client, message, args, user, text, prefix) => {
|
||||
try{
|
||||
if(!args[0])
|
||||
return message.channel.send(new MessageEmbed()
|
||||
.setColor(ee.wrongcolor)
|
||||
.setFooter({text : ee.footertext, iconURL : ee.footericon})
|
||||
.setTitle(`❌ ERROR | You didn't provided a Title, nor a Description`)
|
||||
.setDescription(`Usage: \`${prefix}${this.usage}\``)
|
||||
);
|
||||
let userargs = args.join(" ").split("++");
|
||||
let title = userargs[0];
|
||||
let desc = userargs.slice(1).join(" ")
|
||||
message.channel.send(new MessageEmbed()
|
||||
.setColor(ee.color)
|
||||
.setFooter({text : ee.footertext, iconURL : ee.footericon})
|
||||
.setTitle(title ? title : "")
|
||||
.setDescription(desc ? desc : "")
|
||||
)
|
||||
} catch (e) {
|
||||
console.log(String(e.stack).bgRed)
|
||||
return message.channel.send(new MessageEmbed()
|
||||
.setColor(ee.wrongcolor)
|
||||
.setFooter({text : ee.footertext, iconURL : ee.footericon})
|
||||
.setTitle(`❌ ERREUR | Une erreur est survenue : `)
|
||||
.setDescription(`\`\`\`${e.stack}\`\`\``)
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
/** Template by Tomato#6966 | https://github.com/Tomato6966/Discord-Js-Handler-Template */
|
Reference in New Issue
Block a user