Discord.js setGame() 不再工作

时间:2022-11-11
本文介绍了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'.

这篇关于Discord.js setGame() 不再工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

上一篇:Discord.js - 让用户最后一次活动? 下一篇:Bot 不会在加入时发送消息(djs)

相关文章

最新文章