forked from Supositware/Haha-Yes
moved tag commands
This commit is contained in:
parent
5bf6f16646
commit
72bf53d4e7
2 changed files with 0 additions and 110 deletions
|
@ -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}`);
|
|
||||||
}
|
|
||||||
};
|
|
|
@ -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}`);
|
|
||||||
}
|
|
||||||
};
|
|
Loading…
Reference in a new issue