2020-08-28 02:34:12 +00:00
|
|
|
const magick = require("../utils/image.js");
|
2019-09-13 20:02:41 +00:00
|
|
|
|
|
|
|
exports.run = async (message) => {
|
2019-12-02 20:47:22 +00:00
|
|
|
message.channel.sendTyping();
|
2019-09-13 20:02:41 +00:00
|
|
|
const image = await require("../utils/imagedetect.js")(message);
|
|
|
|
if (image === undefined) return `${message.author.mention}, you need to provide an image to make a Scott the Woz TV meme!`;
|
2020-10-18 21:53:35 +00:00
|
|
|
const { buffer, type } = await magick.run({
|
2020-08-28 02:34:12 +00:00
|
|
|
cmd: "scott",
|
2021-01-05 02:53:34 +00:00
|
|
|
path: image.path,
|
|
|
|
type: image.type
|
2020-08-28 02:34:12 +00:00
|
|
|
});
|
2020-04-12 19:51:48 +00:00
|
|
|
return {
|
2020-02-19 14:25:45 +00:00
|
|
|
file: buffer,
|
2020-10-18 21:53:35 +00:00
|
|
|
name: `scott.${type}`
|
2020-04-12 19:51:48 +00:00
|
|
|
};
|
2019-09-13 20:02:41 +00:00
|
|
|
};
|
|
|
|
|
2019-12-02 20:47:22 +00:00
|
|
|
exports.aliases = ["woz", "tv", "porn"];
|
|
|
|
exports.category = 5;
|
|
|
|
exports.help = "Creates a Scott the Woz TV image";
|