“Jak zobaczyć, ile serwerów jest twoim botem Discord D.JS” Kod odpowiedzi

Jak zobaczyć, ile serwerów jest twoim botem Discord D.JS

You need to use client.setActivity() and then use the client.guilds.cache.size value. 
For example:

client.setActivity(`Currently in ${client.guilds.cache.size} servers`);
Wandering Warbler

Jak wyświetlić liczbę serwerów na niezbędnych

module.exports.run = async (client, message, arguments) => {
   const guild = client.guilds.get("566596189827629066");
   setInterval(function () {
      var memberCount = guild.members.filter(member => !member.user.bot).size;  
      var memberCountChannel = client.channels.get("626462657817477131");
      memberCountChannel.setName(`${guild.name} has ${memberCount} members!`);
   }, 1000);
};
Tough Tamarin

Odpowiedzi podobne do “Jak zobaczyć, ile serwerów jest twoim botem Discord D.JS”

Pytania podobne do “Jak zobaczyć, ile serwerów jest twoim botem Discord D.JS”

Więcej pokrewnych odpowiedzi na “Jak zobaczyć, ile serwerów jest twoim botem Discord D.JS” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu