cloud-list

4.6.6 • Public • Published

Cloud Discord List

Cloud Discord List is an online platform that lists bots for discord

Usage

var cdl = require("cloud-list") 
var cloud_client = new cdl("Client id","Client Api Token") 

Getting Started

Client - discord.js/Eris Client

Posting Guild count:

cloud_client.post(client)
    /**
>[cloud-list] Guild Count Posted!
    * **/

Auto Post guild count:

Auto post guild count once every 2 minutes

cloud_client.autoPost(client)
    /**
>[cloud-list] Guild Count Posted!
    * **/

Get When user votes for your bot:

cloud_client.on("voted", (data) => {
  console.log(data)
    /**
    * data returns: {
      user_votes: 1,
      user_id:463696108766494730,
      user_name:Bruninho,
      user_discriminator:9205,
    * }
    * **/
})

Get bot Stats:

cloud_client.getStats(client).then(function(data) {
  console.log(data)
      /**
{ votes: <int>,
  name: '<string>',
  library: '<string>',
  id:<int>,
  prefix: '<string>',
  long_description: '<string>',
  short_description: '<string>',
  month_votes: <int>,
  server_invite: '<string>',
  owner: '<string>',
  website: '<string>',
  other_owners: Array<string>}
    * **/
}).catch(function(err) {
    if(err) return console.log(err)
});

Check If user has Voted:

cloud_client.hasVoted("User_id").then(function(data) {
   console.log(data)
         /**
if User Has not voted yet returns: (User has not voted yet)!
 
if User has voted:
 
> Returns a Promise that resolves to:
{ id:<String>, 
  vote: <int>}
    * **/
}).catch(function(err) {
   if(err) return console.log(err)
});

Dependencies

Terms and service

TOS for details on our services

Website

Cloud List

Authors

  • BruBrunin - Library Developer

Package Sidebar

Install

npm i cloud-list

Weekly Downloads

2

Version

4.6.6

License

ISC

Unpacked Size

6.22 kB

Total Files

3

Last publish

Collaborators

  • brubrunin