1
0
Fork 0

Added statsChannel OwnerID and support server invite link in config file

Commando
Loic Bersier 6 years ago
parent 64a27ca122
commit 8a847f7635

@ -1,6 +1,8 @@
{
"token": "Your token",
"prefix": "your prefix",
"ownerID": "Your id",
"botID": "ID of the bot",
"statsChannel": "ID of the channel that the bot are going to post its stats"
"statsChannel": "ID of the channel that the bot are going to post its stats",
"supportServer": "Invite link for the support server of the bot"
}

@ -1,14 +1,14 @@
const { CommandoClient } = require('discord.js-commando');
const path = require('path');
const { token, prefix, botID, statsChannel } = require('./config.json');
const { token, prefix, botID, statsChannel, ownerID, supportServer } = require('./config.json');
const responseObject = require("./reply.json");
const fs = require("fs");
// Prefix and ownerID and invite to support server
const client = new CommandoClient({
commandPrefix: `${prefix}`,
owner: '267065637183029248',
invite: 'https://discord.gg/SsMCsVY',
commandPrefix: prefix,
owner: ownerID,
invite: supportServer,
unknownCommandResponse: false,
disableEveryone: true,
});

Loading…
Cancel
Save