我正在尝试让我的机器人在有人键入!owner
时向我发送ping,但是,机器人只发送我的用户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')
答案 0 :(得分:1)
最简单的方法:
将< @ your_id_here>
替换为@“userID”