【发布时间】:2021-12-15 09:33:39
【问题描述】:
我不知道是什么问题,总是出现无法发送空消息
module.exports = {
name: 'actualhelp',
description: "here is some ACTUAL help",
execute(message, args, Discord){
const newEmbed = new Discord.MessageEmbed()
.setColor('#304281')
.setTitle('Help')
.setURL('URL')
.setDescription('Here is some basic help')
.addFields(
{name: '4/102', value: 'Base Set Charizard'},
{name: 'cool', value: 'You will become cool with the Looking Epic role'},
{name: 'ugly', value: 'Thats not nice, you are now not cool and have your Looking Epic role removed if you already had it'},
{name: 'help', value: 'get fooled kiddo, I aint helping you'},
{name: 'kick', value: 'checks to see if you can kick people'},
{name: 'ping', value: 'play some ping pong with me'}
)
.setImage('Image url');
message.channel.send({newEmbed});
}
}
【问题讨论】:
标签: javascript discord discord.js