https://github.com/corwindev/botscord-api
https://github.com/corwindev/botscord-api
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/corwindev/botscord-api
- Owner: CorwinDev
- Created: 2022-08-09T08:52:39.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-08-15T11:32:50.000Z (almost 4 years ago)
- Last Synced: 2025-02-02T04:51:23.944Z (over 1 year ago)
- Language: JavaScript
- Size: 9.77 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Botscord API Documentation
version: 1.0.4
## Introduction
```js
const botscord = require('botscord');
var botscordToken = 'botscordToken'; // Get this from https://botscord.xyz/bot//settings
var client = "Discord.js Client Object";// Your discord.js client
const botscord_client = new botscord(botscordToken, client);
```
## Post serverCount
```js
client.on('ready', () => {
botscord_client.serverCount();
}
```