forked from Supositware/Haha-Yes
Added statsChannel OwnerID and support server invite link in config file
This commit is contained in:
parent
64a27ca122
commit
8a847f7635
2 changed files with 7 additions and 5 deletions
|
@ -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"
|
||||
}
|
8
index.js
8
index.js
|
@ -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…
Reference in a new issue