From 7a403b597857a2074a08d521bbe910c650f619bf Mon Sep 17 00:00:00 2001 From: Crescent Date: Sat, 26 Jun 2021 20:42:36 -0500 Subject: [PATCH] L.run added --- commands/social/run.js | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 commands/social/run.js diff --git a/commands/social/run.js b/commands/social/run.js new file mode 100644 index 0000000..4b98d7c --- /dev/null +++ b/commands/social/run.js @@ -0,0 +1,38 @@ +const Discord = require('discord.js'); +const Saves = require('../../models/saves'); +const UserData = require('../../models/user'); +const makeId = require('../../util/makeid'); + +module.exports = { + name: "run", + aliases: ['run', 'runaway'], + help: "Escape from something or someone with {{p}}run!", + meta: { + category: 'Social', + description: "Get out of an awkward situation", + syntax: '`run`', + extra: null + }, + async execute(message, msg, args, cmd, prefix, mention, client) { + let savess = await Saves.findOne({name: 'run'}) ? await Saves.findOne({name: 'run'}) : new Saves({name: 'run'}); + let saves = savess.saves; + if (!args.length) {return message.channel.send(new Discord.MessageEmbed() + .setTitle(`${message.guild ? message.member.displayName : message.author.username} ran away!`) + .setImage(String(Array.from(saves.values())[Math.floor(Math.random() * saves.size)])) + .setColor('add8e6') + );} + 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 Luno Developer in order to add new running 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("I did it! Are you proud of me Senpai?"); + } + } +}; \ No newline at end of file