1 回答
TA贡献1817条经验 获得超14个赞
首先,您可以在对象中声明消息,然后使用它们发送到不同的渠道。
//Here goes the dynamic setting for different channels
const messages = {
'IdChannel':{
embed:{
title:'foo',
description: message.content,
footer: {text:'foo'}
}
},
'scndChannelID':{
embed:{
title:'bar',
description: message.content,
footer: {text:'bar'}
}
}
}
然后在事件消息上使用它发送到您需要在对象键上声明的通道
Object.keys(messagex).forEach((value,index) => {
//Here can go the static things
message.guild.channels.cache.get(value).send(
{embed:{...messagex[value].embed,
timestamp: new Date(),
image: {url:""}
}})
})
添加回答
举报