Added the 'Selmer Specific' file, added the 'welcome' and 'setup' commands

This commit is contained in:
ION606
2022-06-10 16:19:47 +03:00
parent 789ca684ca
commit b441f6b773
12 changed files with 512 additions and 41 deletions
+19
View File
@@ -0,0 +1,19 @@
module.exports = {
name: "profile",
description: "Posts a description of Monsieur Sleemer himself",
execute(message, args, Discord, Client, bot) {
const newEmbed = new Discord.MessageEmbed()
.setColor('#002eff')
.setTitle('My professional resume')
//.setURL('https://discordjs.guide/popular-topics/embeds.html#embed-preview')
//.setDescription('My professional resume')
.setImage('https://github.com/ION606/selmerBot/blob/main/Sleemer_Bringsjorgend.png?raw=true')
.addFields(
{name: 'My Epithets:', value: "Pearls of Wisdom"},
{name: '\t1. ', value: "Negative money is the best money"},
{name: '\t2. ', value: "There is no god, only logic"}
);
message.channel.send({ embeds: [newEmbed] });
}
}