2020-07-23 00:54:58 +00:00
|
|
|
const magick = require("../build/Release/image.node");
|
|
|
|
const { promisify } = require("util");
|
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-07-23 00:54:58 +00:00
|
|
|
const buffer = await promisify(magick.reverse)(image.path, true, 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";
|