簡體   English   中英

Discord.JS 排行榜

[英]Discord.JS Leaderboards

我目前有一些代碼來檢測您可以在一定秒數內點擊反應的次數。

我正在嘗試為每個人制作一個排行榜,以保存具有最高 CPS(每秒點擊次數)的前 10 名。 否則代碼可以完美運行,但我被困在排行榜上。

這是我的代碼:

let CPStest = new Discord.MessageEmbed()
    .setColor("#8f82ff")
    .setTitle("CPS Test")
    .setDescription(`Alright, ${message.author.username}. Ready to begin your CPS test? All you have to do is spam click this reaction above ^ as fast as you can, you have 10 seconds before the timer runs out. Good Luck!`)
    .setFooter("Note: This may be inaccurate depending on Discord API and Rate Limits.")
    message.channel.send(CPStest)
    message.react('🖱️');

  // Create a reaction collector
  const filter = (reaction, user) => reaction.emoji.name === '🖱️' && user.id === message.author.id;

  var clicks = 1 * 3; // (total clicks)
  var timespan = 10; // (time in seconds to run the CPS test)

  const collector = message.createReactionCollector(filter, { time: timespan * 1000 });

  collector.on('collect', r => {
      console.log(`Collected a click on ${r.emoji.name}`);
      clicks++;
});

  collector.on('end', collected => {
    message.channel.send(`Collected ${clicks} raw clicks (adding reactions only)`);
  clicks *= 2;
      message.channel.send(`Collected ${clicks} total approximate clicks.`);

  var cps = clicks / timespan / 0.5; // Use Math.round if you want to round the decimal CPS
    message.channel.send(`Your CPS averaged ~${cps} clicks per second over ${timespan} seconds.`);
  
  let userNames = '';
  const user = (bot.users.fetch(message.author)).tag;
    
  userNames += `${user}\n`;
    
  let cpsLeaderboard = new Discord.MessageEmbed()
  .setColor("#8f82ff")
  .setTitle("Current CPS Record Holders:")
  .addFields({ name: 'Top 10', value: userNames, inline: true },
    { name: 'CPS', value: cps, inline: true })
  .setTimestamp()
  message.channel.send(cpsLeaderboard)
    
});

如果你想要一個排行榜,你要么需要將它保存到一個文件中,使用一個數據庫,或者(如果你對它沒問題,當你重新啟動你的機器人時你會丟失它)你可以在外面聲明一個變量你的client.on('message') 它似乎足以用於測試目的。

您可以創建一個topUsers數組,每次游戲結束時將玩家推送到該數組,然后對其進行排序並創建一個排行榜。

檢查以下代碼段:

const topUsers = [];

client.on('message', (message) => {
  if (message.author.bot) return;

  let CPStest = new Discord.MessageEmbed()
    .setColor('#8f82ff')
    .setTitle('CPS Test')
    .setDescription(
      `Alright, ${message.author.username}. Ready to begin your CPS test? All you have to do is spam click this reaction above ^ as fast as you can, you have 10 seconds before the timer runs out. Good Luck!`,
    )
    .setFooter(
      'Note: This may be inaccurate depending on Discord API and Rate Limits.',
    );
  message.channel.send(CPStest);
  message.react('🖱️');

  // Create a reaction collector
  const filter = (reaction, user) =>
    reaction.emoji.name === '🖱️' && user.id === message.author.id;

  let clicks = 1 * 3; // (total clicks)
  const timespan = 10; // (time in seconds to run the CPS test)

  const collector = message.createReactionCollector(filter, {
    time: timespan * 1000,
  });

  collector.on('collect', (r) => {
    console.log(`Collected a click on ${r.emoji.name}`);
    clicks++;
  });

  collector.on('end', (collected) => {
    message.channel.send(
      `Collected ${clicks} raw clicks (adding reactions only)`,
    );
    clicks *= 2;
    message.channel.send(`Collected ${clicks} total approximate clicks.`);

    const cps = clicks / timespan / 0.5;
    message.channel.send(
      `Your CPS averaged ~${cps} clicks per second over ${timespan} seconds.`,
    );

    topUsers.push({ tag: message.author, cps });

    let cpses = '';
    let usernames = '';

    topUsers
      // sort the array by CPS in descending order
      .sort((a, b) => b.cps - a.cps)
      // only show the first ten users
      .slice(0, 10)
      .forEach((user) => {
        cpses += `${user.cps}\n`;
        usernames += `${user.tag}\n`;
      });

    const cpsLeaderboard = new Discord.MessageEmbed()
      .setColor('#8f82ff')
      .setTitle('Current CPS Record Holders:')
      .addFields(
        { name: 'Top 10', value: usernames, inline: true },
        { name: 'CPS', value: cpses, inline: true },
      )
      .setTimestamp();
    message.channel.send(cpsLeaderboard);
  });
});

在此處輸入圖像描述

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM