BIG陽
2023-03-24 16:01:34
所以我想將嵌入文本和普通文本放在一條消息中。我想我已經(jīng)看到了,但如果不可能,你可以在評論中說出來。我嘗試了一些可能很愚蠢的方法(我是編碼新手)。這是我的嘗試方式:if (msg.startsWith(among + 'wiki')) { wikipog = message.content.slice(7); var embed = new Discord.MessageEmbed() .setTitle(':globe_with_meridians: Among Us Wiki :globe_with_meridians:') .setDescription('Down below is the page you asked for!') .addField( 'If an image shows up down below, that means your page exists!', '\u200B' ) .addField('\u200b', field) .setColor(color) .setFooter(footer); message.channel.send(embed, `https://among-us.fandom.com/wiki/${wikipog}`);}先感謝您?。槺阏f一下,我知道我可以只執(zhí)行兩個 message.channel.send(),但這會發(fā)送兩個 ping/通知)
1 回答

莫回無
TA貢獻1865條經(jīng)驗 獲得超7個贊
TextChannel#send
接受 2 個參數(shù)。第一個是消息內容(文本),第二個是帶有選項的對象。您可以在選項對象中設置嵌入。
const Embed = new Discord.MessageEmbed()
.setTitle('Title')
.setDescription('This is an embed message')
.setColor('RED');
message.channel.send('This is a normal message.', {
embed: Embed,
});
DiscordJS 13 更新
TextChannel#send
接受一個類型的參數(shù)string | MessagePayload | MessageOptions
。MessageOptions
允許您指定內容和嵌入:
const Embed = /* ... */;
message.channel.send({
content: 'This is a normal message.',
embeds: [Embed],
});
添加回答
舉報
0/150
提交
取消