From 379dce8547936986dcb6f8c56e896301cc49772f Mon Sep 17 00:00:00 2001 From: WubzyGD Date: Fri, 30 Oct 2020 22:47:23 -0600 Subject: [PATCH] Added n?cry --- commands/cry.js | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 commands/cry.js diff --git a/commands/cry.js b/commands/cry.js new file mode 100644 index 0000000..d16a876 --- /dev/null +++ b/commands/cry.js @@ -0,0 +1,32 @@ +const Discord = require('discord.js'); +const Saves = require('../models/saves'); +const UserData = require('../models/user'); +const makeId = require('../util/makeid'); + +module.exports = { + name: "cry", + aliases: ['sob'], + help: "Tell others that you're crying with `{{p}}cry`. We're here for you!", + async execute(message, msg, args, cmd, prefix, mention, client) { + let savess = await Saves.findOne({name: 'cry'}) ? await Saves.findOne({name: 'cry'}) : new Saves({name: 'cry'}); + let saves = savess.saves; + if (!args.length) {return message.channel.send(new Discord.MessageEmbed() + .setTitle(`${message.guild ? message.member.displayName : message.author.username} is Crying!`) + .setImage(String(Array.from(saves.values())[Math.floor(Math.random() * saves.size)])) + .setColor('8d42f5') + );} + if (['s', 'save', 'n', 'new', 'a', 'add'].includes(args[0].toLowerCase())) { + if (!args[1]) {return message.channel.send('oi there cunt, give me a link of an image to add!');} + let tu = await UserData.findOne({uid: message.author.id}); + if ((!tu || !tu.developer) && !client.misc.savers.includes(message.author.id)) {return message.reply("You must be a Natsuki Developer in order to add new cry GIFs.");} + let e = true; + let id; + while (e === true) {id = makeId(6); if (!saves.has(id)) {e = false;}} + args.shift(); + saves.set(id, args.join(" ").trim()); + savess.saves = saves; + savess.save(); + return message.channel.send("Save added!"); + } + } +}; \ No newline at end of file