pikelist.js
v1.0.2
Published
Este modulo foi feito para você poder observar os dados de seu bot na pike list
Downloads
10
Readme
Sobre
Hanneh é uma botlist feita pra deixar os bots com mais emojis e servers
Como usar o modulo
const api = require("apihanneh")
api.log("796443843004072016")
console.log(api.info()) /*
{
avatar: 'https://cdn.discordapp.com/avatars/796443843004072016/dd545bdff2b1c53db25edcc4cd4129b6.webp',
votes: 8,
aproved: false,
tag: 'Fleeh™#1915',
lang: null,
ownerId: '334740922891894795'
}
*/
Pegar votos
const api = require("apihanneh")
api.log("796443843004072016")
let vots = api.info().then(a => a.votes)
if (vots instanceof Promise) {
await vots.then(a => vots = a).catch(a => vots = null)
}
console.log(vots + " votos") /*
8 votos
*/