For the complete documentation index, see llms.txt. This page is also available as Markdown.

Server Count

This will post the server count on the cybralist.com website

const Discord = require("discord.js");
const client = new Discord.Client();
const cybralist = require("cybralist.js");
const dbl = new cybralist("TOKEN-HERE", client);

client.on("ready", () => {

    dbl.serverCount();

})

client.login("BOT_TOKEN");

Last updated