我想设置不一致的机器人状态,但是我使用的是discord.io
否discord.js
,所以找不到适合我的教程。我也尝试过观看discord.js教程并尝试:
bot.user.setPresence({
status: 'online',
game: {
name: '/help'
}
});
错误:启动node bot.js
或:
bot.on('ready', () => {
bot.user.setGame('/help')
})
错误:解析错误:意外的令牌
有人可以帮我吗?
答案 0 :(得分:0)
我正在用Visual Studio Code编写代码。它似乎具有很好的自动完成功能,通过对其进行一些研究,我找到了这个提示:
bot.setPresence(
选项:{idle_since:任何;游戏:{name:string;类型:数字; url ?: string;}}
):无效
我不确定一切的确切含义,但其中大多数似乎是可选的。例如,我可以使用:
更改该机器人的玩游戏bot.on('ready', function (evt) {
bot.setPresence( {game: {name:"/help"}} );
});
答案 1 :(得分:0)
var name = "with the boys. Built by Ayser & Khalid"
var type = 0;
var url = "https://www.twitch.tv/legendarysharkkk";
bot.setPresence({
game: {
name,
type,
url
}});