mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
26 lines
578 B
JavaScript
26 lines
578 B
JavaScript
const Command = require('../../framework/Command');
|
|
|
|
module.exports = class IDCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'id',
|
|
aliases: ['user-id', 'member-id'],
|
|
group: 'info',
|
|
memberName: 'id',
|
|
description: 'Responds with a user\'s ID.',
|
|
args: [
|
|
{
|
|
key: 'user',
|
|
prompt: 'Which user do you want to get the ID of?',
|
|
type: 'user',
|
|
default: msg => msg.author
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
run(msg, { user }) {
|
|
return msg.reply(`${user.id === msg.author.id ? 'Your' : `${user.username}'s`} ID is ${user.id}.`);
|
|
}
|
|
};
|