gpt4 book ai didi

Javascript Discord Bot 在输出中提到作者

转载 作者:行者123 更新时间:2023-11-30 06:18:46 25 4
gpt4 key购买 nike

我要:

我(维克):!投票

机器人:Veak 发起了投票

情况如何:

我(Veak):!投票

Bot: undefined 开始投票

我使用的代码是'message.author + '开始投票'

我确实尝试了 message.author.username,但我收到一条错误消息,说我没有定义用户名。

代码:

bot.on('message', function (user, userID, channelID, message, evt) {

if (message.substring(0, 1) == '!') {
var args = message.substring(1).split(' ');
var cmd = args[0];

args = args.splice(1);
switch(cmd) {

case 'ping':
bot.sendMessage({
to: channelID,
message: 'Pong!'
});
break;

case 'voting':
bot.sendMessage({
to: channelID,
message: ':ballot_box: **| ' + message.author + ' started a vote!**'
});
break;
}
}
});

最佳答案

当你使用 discord.io 时,你想做的事

bot.sendMessage({
to: channelID,
message: ':ballot_box: **| ' + user.username + ' started a vote!**'
});

我建议您切换到 discord.js,因为 discord.io 老旧且无人维护

关于Javascript Discord Bot 在输出中提到作者,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54612014/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com