Custom Status Help

How do I make my discord bot display how much servers it is in as a custom status?

Hey @cylict,

You can place this code before your client.on(message event:

client.on("ready", () => {
  client.user.setActivity(`${client.users.cache.size} users in ${client.guilds.cache.size} servers`, { type: "WATCHING" });
});

Hope this helps!

1 Like

And i would highly suggest reading the documentation

3 Likes

As always :slightly_smiling_face::grin:    

3 Likes