JaBa/commands/Images/bed.js

51 lines
1 KiB
JavaScript
Raw Normal View History

const Command = require("../../base/Command"),
2022-01-04 02:18:28 +05:00
canvacord = require("canvacord");
class Bed extends Command {
constructor(client) {
super(client, {
name: "bed",
dirname: __dirname,
enabled: true,
guildOnly: false,
aliases: [],
memberPermissions: [],
botPermissions: ["SEND_MESSAGES", "EMBED_LINKS", "ATTACH_FILES"],
nsfw: false,
ownerOnly: false,
2022-01-13 00:26:23 +05:00
cooldown: 3000
2022-01-04 02:18:28 +05:00
});
}
async run(message, args) {
const users = [
await this.client.resolveUser(args[0]) || message.author,
await this.client.resolveUser(args[1]) || message.author
];
const m = await message.sendT("misc:PLEASE_WAIT", null, {
prefixEmoji: "loading"
});
try {
const buffer = await canvacord.Canvas.bed(users[0].displayAvatarURL({
format: "png"
}), users[1].displayAvatarURL({
format: "png"
}));
m.delete();
message.channel.send({
files: [{
attachment: buffer
}]
});
2022-01-04 02:18:28 +05:00
} catch (e) {
console.log(e);
m.error("misc:ERR_OCCURRED", null, {
2022-01-04 02:18:28 +05:00
edit: true
});
2022-01-13 00:26:23 +05:00
}
2022-01-04 02:18:28 +05:00
}
2022-01-13 00:26:23 +05:00
}
2022-01-04 02:18:28 +05:00
module.exports = Bed;