Files
selmerBot/commands/postProfile.js
T

19 lines
826 B
JavaScript
Raw Normal View History

2022-02-17 22:02:18 -05:00
module.exports = {
name: "profile",
description: "Posts a description of Monsieur Sleemer himself",
execute(message, args, Discord, Client, bot) {
2022-02-17 22:02:18 -05:00
const newEmbed = new Discord.MessageEmbed()
.setColor('#002eff')
2022-02-17 22:18:51 -05:00
.setTitle('My professional resume')
2022-02-17 22:02:18 -05:00
//.setURL('https://discordjs.guide/popular-topics/embeds.html#embed-preview')
2022-02-17 22:18:51 -05:00
//.setDescription('My professional resume')
.setImage('https://github.com/ION606/selmerBot/blob/main/Sleemer_Bringsjorgend.png?raw=true')
2022-02-17 22:02:18 -05:00
.addFields(
2022-02-17 22:18:51 -05:00
{name: 'My Epithets:', value: "Pearls of Wisdom"},
2022-02-17 22:02:18 -05:00
{name: '\t1. ', value: "Negative money is the best money"},
2022-03-10 20:30:03 -05:00
{name: '\t2. ', value: "There is no god, only logic"}
2022-02-17 22:18:51 -05:00
);
2022-02-17 22:02:18 -05:00
message.channel.send({ embeds: [newEmbed] });
}
}