From 72bf53d4e73f3afcdae5370e86d4ac2baca8df96 Mon Sep 17 00:00:00 2001 From: Loic Bersier Date: Tue, 18 Dec 2018 17:01:39 +0100 Subject: [PATCH] moved tag commands --- commands/utility/tag.js | 62 --------------------------------------- commands/utility/untag.js | 48 ------------------------------ 2 files changed, 110 deletions(-) delete mode 100644 commands/utility/tag.js delete mode 100644 commands/utility/untag.js diff --git a/commands/utility/tag.js b/commands/utility/tag.js deleted file mode 100644 index 584b5398..00000000 --- a/commands/utility/tag.js +++ /dev/null @@ -1,62 +0,0 @@ -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, { - name: 'tag', - aliases: ['customresponse'], - group: 'utility', - memberName: 'tag', - description: `Custom auto response`, - userPermissions: ['MANAGE_MESSAGES'], - args: [ - { - key: 'trigger', - prompt: 'The word that will trigger the autoresponse (use "--" instead of spaces)', - type: 'string', - }, - { - key: 'response', - prompt: 'The response to the word ( you can use spaces here )', - type: 'string', - } - ] - }); - } - - async run(message, { trigger, response }) { - if(blacklist[message.author.id]) - return message.channel.send("You are blacklisted") - - trigger = trigger.toLowerCase(); - do { - trigger = trigger.replace('--', ' ') - } while (trigger.includes('--')) - - let customresponse = {} - let json = JSON.stringify(customresponse) - - - - - fs.readFile(`./tag/${message.guild.id}.json`, 'utf8', function readFileCallback(err, data){ - if (err){ - fs.writeFile(`./tag/${message.guild.id}.json`, `{"${trigger}":"${response}"}`, function (err) { - if (err){ - console.log(err); - } - }) - } else { - customresponse = JSON.parse(data); //now it an object - customresponse [trigger] = response - json = JSON.stringify(customresponse); //convert it back to json - fs.writeFile(`./tag/${message.guild.id}.json`, json, 'utf8', function(err) { - if(err) { - return console.log(err); - } - })}}); - - return message.say(`autoresponse have been set to ${trigger} : ${response}`); - } -}; \ No newline at end of file diff --git a/commands/utility/untag.js b/commands/utility/untag.js deleted file mode 100644 index 041a8933..00000000 --- a/commands/utility/untag.js +++ /dev/null @@ -1,48 +0,0 @@ -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, { - name: 'untag', - aliases: ['rmcustomresponse'], - group: 'utility', - memberName: 'untag', - description: `remove custom autoresponse`, - userPermissions: ['MANAGE_MESSAGES'], - args: [ - { - key: 'trigger', - prompt: 'What is the word to remove', - type: 'string', - } - ] - }); - } - - async run(message, { trigger }) { - if(blacklist[message.author.id]) - return message.channel.send("You are blacklisted") - - trigger = trigger.toLowerCase(); - - let customresponse = {} - let json = JSON.stringify(customresponse) - - - fs.readFile(`./tag/${message.guild.id}.json`, 'utf8', function readFileCallback(err, data){ - if (err){ - console.log(err); - } else { - customresponse = JSON.parse(data); //now it an object - delete customresponse[trigger] - json = JSON.stringify(customresponse); //convert it back to json - fs.writeFile(`./tag/${message.guild.id}.json`, json, 'utf8', function(err) { - if(err) { - return console.log(err); - } - })}}); - - return message.say(`The following autoresponse have been deleted: ${trigger}`); - } -}; \ No newline at end of file