【发布时间】:2021-06-10 20:53:45
【问题描述】:
我希望我的机器人状态每 10 秒更改一次。这是我的 Discord 机器人状态码。
client.on('ready', () => {
console.log(`Logged in as Reddit Bot`);
client.user.setPresence({ activity: { name: 'r.help!'}, status: 'dnd' })
.then(console.log)
.catch(console.error);
});
我希望其他名称也可以自定义。
【问题讨论】:
标签: discord discord.js