summaryrefslogtreecommitdiff
path: root/commands/avatarurl.js
blob: 65abc454286884ca2c93eb4ea982264a57b6a22f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
const Discord = require('discord.js');
exports.run = (client, message, args, config) => {
message.reply(message.author.avatarURL);
}

exports.conf = {
  enabled: true,

  guildOnly: false,

  aliases: [],

  permLevel: 0

};

exports.help = {

  name: 'avatarurl',

  description: 'It displays your avatar url.',

  usage: 'avatarurl'

};