Get accurate server count in a vc (even if your bot is in more than 100 servers) without using x-minutely. It updates the count whenever the bot joins a guild
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
const channel = `YourChannelID`;//Your Channel ID here
let bot = await lib.discord.users['@0.2.0'].me.list();
let count = await lib.meiraba.utils['@1.0.1'].discord.bot_server_count({
bot_id: `${bot.id}`,
});
await lib.discord.channels['@0.3.0'].update({
channel_id: `${channel}`,
name: `γπ€γserver count: ${count}`
});
console.log(count)