blob: c9c8ec002551058b169919253ef751e2acfd932d (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
|
import { Command, CommandoMessage } from 'discord.js-commando';
import emoji from 'emoji-random';
import { MessageEmbed } from 'discord.js';
import request from 'node-superfetch'
module.exports = class IPBot extends Command {
constructor(client) {
super(client, {
name: 'ip',
group: 'bot',
memberName: 'ip',
description: 'Gives you the bot\'s ip.',
examples: ['uwu!ip'],
userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
throttling: {
usages: 5,
duration: 30
},
ownerOnly: true
});
}
async run(msg: CommandoMessage) {
let { body } = await request
.get('https://api.ipify.org')
.query({ format: 'json' })
msg.say('Please wait...').then(m => {
m.edit(`** **`);
let emb = new MessageEmbed()
.setDescription(`uwufier\'s current IP address is **${body.ip}**. ` + emoji.random())
.setColor(0xFFCC4D)
msg.say(emb);
});
}
};
|