Discord.js setGame() 不再工作
我已经使用 Discord.JS 编写我的 Discord 机器人大约 2 个月了,我最近才注意到我的机器人并没有说它正在播放我所说的内容.当我第一次对机器人进行编码时,直到最近它工作得很好.现在我拥有的 3 个不和谐机器人没有展示他们的游戏.
I have been coding my Discord bot using Discord.JS for about 2 months now and I've just recently noticed that my bot isn't saying that it's playing what I'm telling it. When I first coded the bot up until recently it worked just fine. Now the 3 discord bots I have aren't showing their games.
这是我正在使用的代码:
This is the code I'm using:
const Discord = require("discord.js");
const bot = new Discord.Client();
bot.on("ready", () => {
console.log("Ready");
bot.user.setGame("Type !help");
}
推荐答案
.setGame()
现在已弃用,但您可以使用 .setPresence()
或使用.setActivity()
与 .setGame()
的内容和格式相同.例如.
.setGame()
is deprecated now but you could use .setPresence()
or you could use the .setActivity()
which is the same thing and format as the .setGame()
.
Ex.
const Discord = require('discord.js');
const bot = new Discord.Client();
bot.user.setActivity('YouTube', { type: 'WATCHING' });
这里是一个链接如果您想将 'Watching'
更改为 'Playing'
之类的其他内容,请参阅文档.
Here is a link to the documentation in case you wanted to change 'Watching'
to something else like 'Playing'
.
相关文章