我正在使用 Discord.js-commando 制作一个脚本来响应一条消息,该命令是由 Streamlabs Chatbot 发送的执行该脚本的命令。
发送消息后,我注意到它没有按自己的命令响应。机器人名称是“Cuartel General”,但它甚至没有进入运行 fn。
有没有办法让 Bot 响应自己的命令?
constructor(client) {
super(client, {
name: 'acceso',
group: 'admin',
memberName: 'acceso',
description: 'Generates invite'
});
}
async run(message, args) {
if (message.author.username == "Cuartel General") {
console.log("Bot has access");
} else {
console.log("Usuario is not Bot");
}
}
任何帮助表示赞赏!