2020-08-28 02:34:12 +00:00
|
|
|
const magick = require("../utils/image.js");
|
2020-05-20 18:52:37 +00:00
|
|
|
|
|
|
|
exports.run = async (message) => {
|
|
|
|
message.channel.sendTyping();
|
|
|
|
const image = await require("../utils/imagedetect.js")(message);
|
|
|
|
if (image === undefined) return `${message.author.mention}, you need to provide a GIF to loop!`;
|
|
|
|
if (image.type !== "gif") return `${message.author.mention}, that isn't a GIF!`;
|
2020-08-28 02:34:12 +00:00
|
|
|
const buffer = await magick({
|
|
|
|
cmd: "reverse",
|
|
|
|
path: image.path,
|
|
|
|
soos: true,
|
|
|
|
delay: image.delay ? (100 / image.delay.split("/")[0]) * image.delay.split("/")[1] : 0
|
|
|
|
});
|
2020-05-20 18:52:37 +00:00
|
|
|
return {
|
|
|
|
file: buffer,
|
|
|
|
name: "soos.gif"
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.aliases = ["bounce"];
|
|
|
|
exports.category = 5;
|
|
|
|
exports.help = "\"Loops\" a GIF by reversing it when it's finished";
|