我正在制作这个机器人(我对 javascript 还很陌生)并且毫无理由地,在我输入node .然后它关闭后它什么也没说。我怀疑它与我的 console.log 有关,但我检查了一下,这一切似乎都是为了我不知道如何解决这个问题const bot = new Discord.Client();const token = 'TOKEN';const prefix = "!"bot.on('ready', () => { console.log('Bot online') bot.on('message', msg => { if (msg.content === "hello") msg.reply('hewo'); } ) bot.on('message', msg => { let args = msg.content.substring(prefix.length).split(" "); switch(args[0]){ case 'summon': msg.channel('hi') break; }}); bot.login(token)})return;
添加回答
举报
0/150
提交
取消