module.exports = class CustomResponseCommand extends Command {
constructor(client) {
super(client, {
name: 'customresponse',
group: 'admin',
memberName: 'customresponse',
userPermissions: ['ADMINISTRATOR'],
description: `Can disable autoresponse in the channel (you can add "ALL" like this "haha enable/disable all" to enable/disable in every channel (EXPERIMENTAL))`,
args: [
{
key: 'trigger',
prompt: 'Disable or enable?',
type: 'string',
},
{
key: 'response',
prompt: 'Disable or enable?',
type: 'string',
}
]
});
}
async run(message, { trigger, response }) {
if(blacklist[message.author.id])
return message.channel.send("You are blacklisted")
trigger = trigger.toLowerCase();
response = response.toLowerCase()
trigger = trigger.replace('--', ' ')
let customresponse = {}
let json = JSON.stringify(customresponse)
2018-12-05 23:31:03 +01:00
fs.readFile('./json/customresponse.json', 'utf8', function readFileCallback(err, data){