parent
e6a2baf60f
commit
200e6bbc55
@ -0,0 +1,37 @@ |
|||||||
|
const Discord = require('discord.js'); |
||||||
|
const Saves = require('../../models/saves'); |
||||||
|
const UserData = require('../../models/user'); |
||||||
|
const makeId = require('../../util/makeid'); |
||||||
|
|
||||||
|
module.exports = { |
||||||
|
name: "blush", |
||||||
|
help: "Let others know that someone made your cheeks red `{{p}}sip`.", |
||||||
|
meta: { |
||||||
|
category: 'Social', |
||||||
|
description: "Let others know that someone made your cheeks red", |
||||||
|
syntax: '`blush`', |
||||||
|
extra: null |
||||||
|
}, |
||||||
|
async execute(message, msg, args, cmd, prefix, mention, client) { |
||||||
|
let savess = await Saves.findOne({name: 'blush'}) ? await Saves.findOne({name: 'blush'}) : new Saves({name: 'blush'}); |
||||||
|
let saves = savess.saves; |
||||||
|
if (!args.length) {return message.channel.send(new Discord.MessageEmbed() |
||||||
|
.setTitle(`${message.guild ? message.member.displayName : message.author.username} blushes UwU`) |
||||||
|
.setImage(String(Array.from(saves.values())[Math.floor(Math.random() * saves.size)])) |
||||||
|
.setColor('ad0072') |
||||||
|
);} |
||||||
|
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 sip 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!"); |
||||||
|
} |
||||||
|
} |
||||||
|
}; |
@ -0,0 +1,9 @@ |
|||||||
|
const Mute = require('../../models/mute'); |
||||||
|
|
||||||
|
module.exports = async (client) => { |
||||||
|
client.misc.cache.mute = new Map(); |
||||||
|
|
||||||
|
for await (const mute of Mute.find()) { |
||||||
|
client.misc.cache.mute.set(mute.uid, mute.until); |
||||||
|
} |
||||||
|
}; |
Loading…
Reference in new issue