setGame 的问题

Issues with setGame

当我的机器人开始“!help for help”但似乎无法正常工作时,我正试图强制更改它的 "Game"。

目前我的代码是...

const Commando = require('discord.js-commando');
const Request = require('request');
const Bot = new Commando.Client();

Bot.client.setGame("!help for help");

我也试过了...

Bot.client.setStatus("!help for help");
Bot.user.setGame("!help for help");
Bot.user.setStatus("!help for help");

我似乎无法理解你是如何调用它来使其工作的。

试试这个:

bot.on('ready', () => {
  bot.user.setGame("use !help");
});

在检查你的客户端是否准备好时,你可以加入这一小段代码。

Client.user.setActivity(" your game here "):

希望对您有所帮助!