按照教程制作不和谐机器人,但它没有用
Posted
技术标签:
【中文标题】按照教程制作不和谐机器人,但它没有用【英文标题】:making a discord bot followed a tutorial and it dint work 【发布时间】:2021-01-16 15:43:23 【问题描述】:我正在使用 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');
);
【问题讨论】:
【参考方案1】:控制台说什么? 你也没有client.login()
【讨论】:
我修复它但我应该有客户端登录以上是关于按照教程制作不和谐机器人,但它没有用的主要内容,如果未能解决你的问题,请参考以下文章