forked from Supositware/Haha-Yes
Forgot some args
This commit is contained in:
parent
2fb624e265
commit
37f8e97650
7 changed files with 58 additions and 6 deletions
52
commands/admin/untag.js
Normal file
52
commands/admin/untag.js
Normal file
|
@ -0,0 +1,52 @@
|
||||||
|
const { Command } = require('discord-akairo');
|
||||||
|
const fs = require('fs');
|
||||||
|
|
||||||
|
class UnTagCommand extends Command {
|
||||||
|
constructor() {
|
||||||
|
super('untag', {
|
||||||
|
aliases: ['untag'],
|
||||||
|
category: 'admin',
|
||||||
|
split: 'none',
|
||||||
|
args: [
|
||||||
|
{
|
||||||
|
id: "trigger",
|
||||||
|
type: "string"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
channelRestriction: 'guild',
|
||||||
|
description: {
|
||||||
|
content: 'Remove created custom autoresponse',
|
||||||
|
usage: '[trigger]',
|
||||||
|
examples: ['"do you know da wea"']
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async exec(message, args) {
|
||||||
|
let trigger = args.trigger;
|
||||||
|
|
||||||
|
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}`);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = UnTagCommand;
|
|
@ -17,7 +17,7 @@ class FetishCommand extends Command {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async exec(message,args) {
|
async exec(message, args) {
|
||||||
let Attachment = (message.attachments).array();
|
let Attachment = (message.attachments).array();
|
||||||
let image = args.image;
|
let image = args.image;
|
||||||
if (!Attachment[0] && !image)
|
if (!Attachment[0] && !image)
|
||||||
|
|
|
@ -12,7 +12,7 @@ class GodCommand extends Command {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async exec(message) {
|
async exec(message, args) {
|
||||||
let Attachment = (message.attachments).array();
|
let Attachment = (message.attachments).array();
|
||||||
let image = args.image;
|
let image = args.image;
|
||||||
if (!Attachment[0] && !image)
|
if (!Attachment[0] && !image)
|
||||||
|
|
|
@ -11,7 +11,7 @@ class IdubbbzCommand extends Command {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async exec(message) {
|
async exec(message, args) {
|
||||||
let Attachment = (message.attachments).array();
|
let Attachment = (message.attachments).array();
|
||||||
let image = args.image;
|
let image = args.image;
|
||||||
if (!Attachment[0] && !image)
|
if (!Attachment[0] && !image)
|
||||||
|
|
|
@ -11,7 +11,7 @@ class IdubbbzPaintCommand extends Command {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async exec(message) {
|
async exec(message, args) {
|
||||||
let Attachment = (message.attachments).array();
|
let Attachment = (message.attachments).array();
|
||||||
let image = args.image;
|
let image = args.image;
|
||||||
if (!Attachment[0] && !image)
|
if (!Attachment[0] && !image)
|
||||||
|
|
|
@ -17,7 +17,7 @@ class LikeCommand extends Command {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async exec(message,args) {
|
async exec(message, args) {
|
||||||
let Attachment = (message.attachments).array();
|
let Attachment = (message.attachments).array();
|
||||||
let image = args.image;
|
let image = args.image;
|
||||||
if (!Attachment[0] && !image)
|
if (!Attachment[0] && !image)
|
||||||
|
|
|
@ -18,7 +18,7 @@ class UglyCommand extends Command {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async exec(message,args) {
|
async exec(message, args) {
|
||||||
let Attachment = (message.attachments).array();
|
let Attachment = (message.attachments).array();
|
||||||
let image = args.image;
|
let image = args.image;
|
||||||
if (!Attachment[0] && !image)
|
if (!Attachment[0] && !image)
|
||||||
|
|
Loading…
Reference in a new issue