From 5a4dbf99a7bec91be71b4d0abeefa485b4e9f6ba Mon Sep 17 00:00:00 2001 From: WubzyGD Date: Thu, 24 Jun 2021 01:48:48 -0600 Subject: [PATCH] some shit is added --- commands/social/spank.js | 53 ++++++++++++++++++++++++++++++++++++++++ responses/crescent.js | 2 +- 2 files changed, 54 insertions(+), 1 deletion(-) create mode 100644 commands/social/spank.js diff --git a/commands/social/spank.js b/commands/social/spank.js new file mode 100644 index 0000000..d0c2f87 --- /dev/null +++ b/commands/social/spank.js @@ -0,0 +1,53 @@ +const Discord = require('discord.js'); + +const Saves = require('../../models/saves'); +const UserData = require('../../models/user'); +const VC = require('../../models/vscount'); + +const makeId = require('../../util/makeid'); + +module.exports = { + name: "spank", + help: "Tell someone they're being a little too naughty :3 by mentioning someone to spank!", + meta: { + category: 'Social', + description: "Give someone a spanking :v", + syntax: '`spank <@user>`', + extra: null + }, + async execute(message, msg, args, cmd, prefix, mention, client) { + let savess = await Saves.findOne({name: 'spank'}) ? await Saves.findOne({name: 'spank'}) : new Saves({name: 'spank'}); + let saves = savess.saves; + if (!args.length) {return message.channel.send("You have to mention someone to spank!");} + if (mention && args[0].match(/^<@(?:!?)(?:\d+)>$/)) { + if (!message.guild) {return message.reply("Please make sure you're in a server so you can mention someone other than me to spank!");} + if (!message.guild.members.cache.has(mention.id)) {return message.reply("That user is not in this server!");} + if (message.author.id === mention.id) {return message.reply("You turn around and... whoop your own ass? Nah, I don't think it really works.");} + let spanks = await VC.findOne({uid: message.author.id, countOf: 'spank'}) || new VC({uid: message.author.id, countOf: 'spank'}); + spanks.against[mention.id] = spanks.against[mention.id] ? spanks.against[mention.id] + 1 : 1; + spanks.total++; + spanks.markModified(`against.${mention.id}`); + spanks.save(); + return message.channel.send(new Discord.MessageEmbed() + .setAuthor(`${message.guild ? message.member.displayName : message.author.username} gives ${message.guild.members.cache.get(mention.id).displayName} a spank!`, message.author.avatarURL()) + .setDescription(`You've spanked them **${spanks.against[mention.id] === 1 ? 'once' : `${spanks.against[mention.id]} times!`}**`) + .setImage(String(Array.from(saves.values())[Math.floor(Math.random() * saves.size)])) + .setColor('52c7bb') + .setFooter(`${spanks.total} spank${spanks.total === 1 ? '' : 's'} total`) + ); + } + 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 spank 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 diff --git a/responses/crescent.js b/responses/crescent.js index 339d791..86e1f5a 100644 --- a/responses/crescent.js +++ b/responses/crescent.js @@ -44,7 +44,7 @@ module.exports = { } if (incl(['gn luno', 'goodnight luno', 'night luno'])) { - const r = ["Goodnight! :)", "Night Cres, I hope the server hasn't beckoned your wake for too long.", "I hope you're off to get some good sleep ^^ or perhaps ang is sleepy too? :eyes:"]; + const r = ["Goodnight! :)", "Night Cres, I hope the server hasn't beckoned your wake for too long.", "I hope you're off to get some good sleep ^^ I don't get tired but... maybe I could pretend to be just for you...? :eyes:"]; message.channel.send(`${r[Math.floor(Math.random() * r.length)]} Want me to set your status before you go off?`); let to = false; let sconf; try {sconf = await message.channel.awaitMessages(m => m.author.id === "480535078150340609", {time: 15000, errors: ['time'], max: 1});}