我想将我的不和谐机器人状态从播放更改为观看

时间:2021-02-08 09:29:16

标签: discord discord.js

我想让我的状态为“正在观看”命令 -help”,但我不知道如何将其从播放切换到观看,

这是我的代码:

command(client, 'status', (message) => {
    if (message.author.id != "my id goes here") return;    
    const content = message.content.replace('-status ', '')

    client.user.setPresence({
        activity: {
            name: content,
            type: 0,
        },
    })
})

1 个答案:

答案 0 :(得分:1)

您需要设置代码:

text

有关更多信息,您可以查看here