Discord.js 显示状态中的禁令数量

Posted

技术标签:

【中文标题】Discord.js 显示状态中的禁令数量【英文标题】:Discord.js display the number of bans in status 【发布时间】:2021-05-05 11:41:17 【问题描述】:

我有一个用于特定服务器的机器人,我想将状态设置为服务器的封禁数。

我有以下代码,但我无法获得banned.size

client.on("ready", () => 
  message.guild.fetchBans().then(banned => 
    let sizee = banned.size
  )

  setInterval(function() 
    let lol = ['status 1', `status 2`, `Status 3`, `status 4`, `this guild has $sizee banned users `];
    let f = ['LISTENING', 'WATCHING', 'LISTENING', 'PLAYING', 'WATCHING'];
    let status = lol[Math.floor(Math.random()*lol.length)];
    client.user.setActivity(status, type: f[Math.floor(Math.random()*f.length)])
  , 15000) 
  
  client.user.setPresence( status: 'online' )

  console.log(`Logged in as $client.user.tag!`);
);

【问题讨论】:

【参考方案1】:

您在ready 事件中没有或没有收到message 对象,因此您无法从中获得公会。您将需要通过其 ID 找到公会。 client.guilds.cache.get() 应该可以解决问题。

一旦你有了公会,你需要将fetchBans() 移动到setInterval 的回调中,所以它每次都会获取它。如果你在它之外获取它,它只会在你启动机器人时获取一次,并且除非你重新启动你的机器人,否则它不会被更新。

您可以使用异步函数而不是与thens 纠缠不清,而只需await 结果。

如果您添加公会 ID,以下示例将起作用。我也添加了一些 cmets:

client.on('ready', () => 
  // get the guild once the bot is ready
  // make sure you add the guild id
  const guild = client.guilds.cache.get('ADD GUILD ID HERE');

  client.user.setPresence( status: 'online' );

  // run the updateStatus function every 15s
  // we need to pass the client and guild
  setInterval(updateStatus, 15000, client, guild);

  console.log(`Logged in as $client.user.tag!`);
);

// helper function to pick a random element from an array
function pickOne(arr) 
  return arr[Math.floor(Math.random() * arr.length)];


// async function that fetches the current number of bans
// and updates the status
async function updateStatus(client, guild) 
  const bans = await guild.fetchBans();
  const statuses = [
    'status 1',
    'status 2',
    'status 3',
    'status 4',
    `this guild has $bans.size banned users`,
  ];
  const activities = [
    'LISTENING',
    'WATCHING',
    'LISTENING',
    'PLAYING',
    'WATCHING',
  ];

  client.user.setActivity(pickOne(statuses), 
    type: pickOne(activities),
  );

PS:一项改进是仅在您想在状态中显示禁令时才获取禁令。

【讨论】:

以上是关于Discord.js 显示状态中的禁令数量的主要内容,如果未能解决你的问题,请参考以下文章

将 Minecraft 禁令原因链接到 Discord.js [关闭]

Discord.js(大规模禁令命令修复)

discord.js 如何使用代码撤销对被禁止用户的禁令?

从 v11 迁移后,无法在 discord.js v12 中从服务器设置用户状态和记录用户数量

我如何在 discord.js 中拥有公会的数量

Discord 自定义状态未显示在 Discord.js v12 [关闭]