discord.js sending multiple embeds in a single message code example
Example 1: discord.js send embed
message.channel.send({
"embed": {
"color": 12943398,
"fields": [
{
"name": "Information",
"value": "Embeds work for both text, and emoji. You can use variables too"
}
]
}
})
Example 2: how to send an embed message discord.js
let Embed = new Discord.MessageEmbed()
.setTitle()
.setAuthor()
.setColor()
.addField()
.setDescription()
.setThumbnail()
Example 3: discord.js multiple embeds
const Discord = require('discord.js');
const Client = new Discord.Client();
const { token, prefix } = require('./config.json');
Client.on('ready',() =>{
console.log('Ready!');
})
Client.on('message', message=>{
let args = message.content.substring(prefix.length).split(" ");
switch(args[0]){
case 'example1':
const example1 = new Discord.MessageEmbed()
.setColor('#FF8D27')
.setAuthor('Text author')
.setDescription('Example text')
message.channel.send(example1)
const example2 = new Discord.MessageEmbed()
.setColor('#FF8D27')
.setAuthor('Test Author')
.setDescription('Example text 2')
message.channel.send(example2)
break;
}
})
Client.on(token)