2

我试图让我的机器人在有人键入时向我发送 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')
4

1 回答 1

1

替换@"userID"<@your_user_id_here>
例如:<@123456789123456789>

于 2018-05-27T19:15:55.200 回答