“Discord Rich Embed Concut” Ответ

Дискорды встраивания

const Discord = require("discord.js")

const embed = new Discord.MessageEmbed() // Ver 12.2.0 of Discord.js
.setTitle("This is a title")
.setDescription("This is a description")
.setTimestamp()
.setFooter("This is a footer")
.setAuthor("This is the author's name", //and this its profile pic)
.addField("This is a field", "this is its description")
.setImage("https://images-ext-2.discordapp.net/external/cC-YBJkH2GXnX7MHMASUM9Gle1S1im3rDJj2K54A28w/%3Fcid%3D73b8f7b19a5ccc575679c0a7fc4a673b753e4ce993f35223%26rid%3Dgiphy.mp4/https/media2.giphy.com/media/Q8bEDnj9hZd6vivXSZ/giphy.mp4")
.setThumbnail("https://images-ext-2.discordapp.net/external/cC-YBJkH2GXnX7MHMASUM9Gle1S1im3rDJj2K54A28w/%3Fcid%3D73b8f7b19a5ccc575679c0a7fc4a673b753e4ce993f35223%26rid%3Dgiphy.mp4/https/media2.giphy.com/media/Q8bEDnj9hZd6vivXSZ/giphy.mp4")
<message>.<channel>.send(embed) // Remove the brackets <>
Lime

Discord Rich Embed Concut

const Discord = require("discord.js")

const embed = new Discord.MessageEmbed() // Ver 12.2.0 of Discord.js
.setTitle("This is a title")
.setURL("Title URL")
.setDescription("This is a description")
.setTimestamp()
.setFooter("This is a footer", "FOOTER ICON URL")
.setAuthor("This is the author's name", "AUTHOR ICON URL")
.addField("This is a field", "this is its description")
.addFields([{
	name: "You can add as many fields you need.",
  	value: "Field description"
}, {
	name: "field 2",
  	vale: "field 2 description"
}, {
	name: "field 3",
  	vale: "field 3 description"
} ])
.setImage("IMAGE URL")
.setThumbnail("THUMBNAIL URL")
message.channel.send(embed)
Hilarious Hoopoe

Ответы похожие на “Discord Rich Embed Concut”

Вопросы похожие на “Discord Rich Embed Concut”

Больше похожих ответов на “Discord Rich Embed Concut” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования