如何将我的机器人状态图标更改为流式传输 discord.js
How can I change my bots status icon to streaming in discord.js
如何将 this 更改为 Streaming 图标。
到目前为止我有这么多:
client.user.setActivity('with the Threads of the Universe', { type: ActivityType.Streaming });
但是我怎样才能改变实际的图标呢?
尝试这个你必须添加状态:'online',
你可以改变这个
status: "idle"
// 在线、空闲、不可见、免打扰
client.user.setActivity('with the Threads of the Universe', { type: ActivityType.Streaming status: 'online', });
如果您需要流状态,请使用此
client.user.setActivity("Hello world.", {
type: "STREAMING",
url: "https://www.twitch.tv/yourchannle"
});
如何将 this 更改为 Streaming 图标。 到目前为止我有这么多:
client.user.setActivity('with the Threads of the Universe', { type: ActivityType.Streaming });
但是我怎样才能改变实际的图标呢?
尝试这个你必须添加状态:'online',
你可以改变这个
status: "idle"
// 在线、空闲、不可见、免打扰
client.user.setActivity('with the Threads of the Universe', { type: ActivityType.Streaming status: 'online', });
如果您需要流状态,请使用此
client.user.setActivity("Hello world.", {
type: "STREAMING",
url: "https://www.twitch.tv/yourchannle"
});