我试图让我的机器人在有人键入时向我发送 ping !owner
,但是,机器人只发送我的用户 ID 或未链接的名称。如何将其变为 ping?我正在为这个机器人使用 NodeJS。
const Discord = require('Discord.js');
const bot = new Discord.Client();
bot.on('message', (message) => {
if(message.content == '!owner') {
message.channel.send('Hi @"userID" is the owner, do you need help');
}
});
bot.login('BotToken')