mrmBot-Matrix/commands/globe.js

20 lines
719 B
JavaScript
Raw Normal View History

const magick = require("../utils/image.js");
2020-07-16 14:31:48 +00:00
exports.run = async (message) => {
const image = await require("../utils/imagedetect.js")(message);
if (image === undefined) return `${message.author.mention}, you need to provide an image to spin!`;
const processMessage = await message.channel.createMessage("<a:processing:479351417102925854> Processing... This might take a while");
const { buffer } = await magick.run({
cmd: "globe",
path: image.path
});
if (processMessage.channel.messages.get(processMessage.id)) await processMessage.delete();
2020-07-16 14:31:48 +00:00
return {
file: buffer,
name: "globe.gif"
};
};
2021-01-03 18:04:41 +00:00
exports.aliases = ["rotate", "sphere"];
2020-07-16 14:31:48 +00:00
exports.category = 5;
exports.help = "Spins an image";