mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 21:24:59 +05:00
59 lines
No EOL
1.2 KiB
JavaScript
59 lines
No EOL
1.2 KiB
JavaScript
const Command = require("../../base/Command.js"),
|
|
Discord = require("discord.js"),
|
|
canvacord = require("canvacord");
|
|
|
|
class Phcomment extends Command {
|
|
constructor (client) {
|
|
super(client, {
|
|
name: "phcomment",
|
|
dirname: __dirname,
|
|
enabled: true,
|
|
guildOnly: false,
|
|
aliases: [],
|
|
memberPermissions: [],
|
|
botPermissions: [ "SEND_MESSAGES", "EMBED_LINKS", "ATTACH_FILES" ],
|
|
nsfw: false,
|
|
ownerOnly: false,
|
|
cooldown: 5000
|
|
});
|
|
}
|
|
|
|
async run (message, args) {
|
|
|
|
let user = await this.client.resolveUser(args[0]);
|
|
let text = args.join(" ");
|
|
|
|
if(user){
|
|
text = args.slice(1).join(" ");
|
|
} else {
|
|
user = message.author;
|
|
}
|
|
|
|
if(!text){
|
|
return message.error("images/phcomment:MISSING_TEXT");
|
|
}
|
|
|
|
const m = await message.sendT("misc:PLEASE_WAIT", null, {
|
|
prefixEmoji: "loading"
|
|
});
|
|
try {
|
|
const buffer = await canvacord.Canvas.phub({
|
|
username: user.username,
|
|
image: user.displayAvatarURL({ format: "png" }),
|
|
message: text
|
|
});
|
|
const attachment = new Discord.MessageAttachment(buffer, "phcomment.png");
|
|
message.channel.send(attachment);
|
|
m.delete();
|
|
} catch(e){
|
|
console.log(e);
|
|
m.error("misc:ERROR_OCCURRED", null, {
|
|
edit: true
|
|
});
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = Phcomment; |