JaBa/commands/Images/youtube-comment.js

50 lines
1.1 KiB
JavaScript
Raw Normal View History

const Command = require("../../base/Command"),
2022-01-04 02:18:28 +05:00
canvacord = require("canvacord");
class Ytcomment extends Command {
2022-01-04 02:18:28 +05:00
constructor(client) {
super(client, {
name: "ytcomment",
2022-01-04 02:18:28 +05:00
dirname: __dirname,
enabled: true,
guildOnly: false,
aliases: [],
2022-01-04 02:18:28 +05:00
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) {
let user = await this.client.resolveUser(args[0]);
let text = args.join(" ");
2022-01-13 00:26:23 +05:00
if (user) text = args.slice(1).join(" ");
else user = message.author;
2022-01-04 02:18:28 +05:00
if (!text) return message.error("images/phcomment:MISSING_TEXT"); // same text as phcomment
const m = await message.sendT("misc:PLEASE_WAIT", null, {
prefixEmoji: "loading"
});
const image = await canvacord.Canvas.youtube({
username: user.username,
avatar: user.displayAvatarURL({
format: "png"
}),
content: text
});
m.delete();
message.channel.send({
files: [{
name: "ytcomment.png",
attachment: image
}]
});
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 = Ytcomment;