t-bots
v0.0.3
Published
The API for https://t-bot-team-list.glitch.me/
Downloads
1
Readme
WWelcome to the T-Bots API
- For more info go to the Docs or look below
Send Bots Server Count
const Tbot = require('T-Bots');
let api = new Tbot('API Key');
client.on('ready', ()=> {
api.postServers(client.user.id, client.guilds.size);
setInterval(function() {
api.postServers(client.user.id, client.guilds.size);
}, 900000);
});
Get an Bots info
let ID = "BOTS ID";
client.on('ready', ()=> {
api.getBotInfo(ID).then(user => {
console.log(user)
})
});