forked from embee/woomy
readd emoji
This commit is contained in:
parent
1a6cd52d06
commit
2962de2931
1 changed files with 44 additions and 0 deletions
44
commands/emoji.js
Normal file
44
commands/emoji.js
Normal file
|
@ -0,0 +1,44 @@
|
|||
exports.conf = {
|
||||
enabled: true,
|
||||
guildOnly: false,
|
||||
aliases: [],
|
||||
permLevel: 'User',
|
||||
requiredPerms: []
|
||||
};
|
||||
|
||||
exports.help = {
|
||||
name: 'emoji',
|
||||
category: 'Utility',
|
||||
description: 'Enlarges and links an custom emoji',
|
||||
usage: 'emoji [emoji]',
|
||||
params: '`[emoji] - Discord emoji you want to enlarge.'
|
||||
};
|
||||
|
||||
exports.run = async (client, message, args) => {
|
||||
if(!args[0]) {
|
||||
return message.channel.send(`You need to specify a custom emoji. Usage: \`${client.commands.get(`emoji`).help.usage}\``)
|
||||
};
|
||||
|
||||
var ID;
|
||||
var format = ".png"
|
||||
var string = args[0].replace(/\D/g,'');
|
||||
|
||||
if(args[0].charAt(1) == "a" && args[0].charAt(2) == ":") {
|
||||
format = ".gif"
|
||||
};
|
||||
|
||||
if(string.length > 18) {
|
||||
ID = string.slice(string.length - 18);
|
||||
} else {
|
||||
ID = string;
|
||||
};
|
||||
|
||||
if(!ID) {
|
||||
return message.channel.send(`<:error:466995152976871434> Invalid emoji. This command only works with custom emojis.`)
|
||||
};
|
||||
|
||||
|
||||
|
||||
message.channel.send("https://cdn.discordapp.com/emojis/" + ID + format)
|
||||
};
|
||||
|
Loading…
Reference in a new issue