我正在使用node.js和Visual Studio
机器人似乎无法正常工作,但确实响应了节点。命令,但不响应-ping命令,我可以找出原因,是拼写还是更新代码,还是我愚蠢,请帮忙。
const Discord = require('discord.js');
const client = new Discord.Client();
const prefix = '-';
client.once('ready', () => {
console.log('sirjunkbot is awake');
});
client.on('message', message =>{
if(!message.content.startsWith(prefix) || message.author.bot) return;
const args = message.content.slice(prefix.length).split(/ +/);
const command = args.shift().toLowerCase();
if(command === 'ping'){
message.channel.send('pong!');
} else if (command == 'test'){
message.channel.send('123');
}
});
答案 0 :(得分:0)
控制台怎么说? 您也没有client.login()