Haha-Yes/commands/utility/tag.js

56 lines
2.1 KiB
JavaScript
Raw Normal View History

2018-12-05 21:34:43 +01:00
const { Command } = require('discord.js-commando');
const blacklist = require('../../json/blacklist.json');
const fs = require('fs');
module.exports = class CustomResponseCommand extends Command {
constructor(client) {
super(client, {
2018-12-06 01:30:35 +01:00
name: 'tag',
2018-12-06 04:18:21 +01:00
aliases: ['customresponse'],
group: 'utility',
2018-12-06 01:30:35 +01:00
memberName: 'tag',
description: `Custom auto response`,
2018-12-05 21:34:43 +01:00
args: [
{
key: 'trigger',
2018-12-06 04:18:21 +01:00
prompt: 'The word that will trigger the autoresponse (use "--" instead of spaces)',
2018-12-05 21:34:43 +01:00
type: 'string',
},
{
key: 'response',
2018-12-06 04:18:21 +01:00
prompt: 'The response to the word ( you can use spaces here )',
2018-12-05 21:34:43 +01:00
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()
2018-12-06 01:30:35 +01:00
do {
trigger = trigger.replace('--', ' ')
} while (trigger.includes('--'))
2018-12-05 21:34:43 +01:00
let customresponse = {}
let json = JSON.stringify(customresponse)
2018-12-06 01:30:35 +01:00
2018-12-06 04:18:21 +01:00
fs.readFile('DiscordBot/json/customresponse.json', 'utf8', function readFileCallback(err, data){
2018-12-05 21:34:43 +01:00
if (err){
console.log(err);
} else {
customresponse = JSON.parse(data); //now it an object
2018-12-06 04:18:21 +01:00
customresponse [trigger] = { 'response': response, 'server': message.guild.id }
2018-12-05 21:34:43 +01:00
json = JSON.stringify(customresponse); //convert it back to json
2018-12-06 04:18:21 +01:00
fs.writeFile('DiscordBot/json/customresponse.json', json, 'utf8', function(err) {
2018-12-05 21:34:43 +01:00
if(err) {
return console.log(err);
}
})}});
return message.say(`autoresponse have been set to ${trigger} : ${response}`);
2018-12-05 21:34:43 +01:00
}
};