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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
import { AllowedMentions, ArgType, BotCommand, emojis, format, mcUUID, type CommandMessage, type SlashMessage } from '#lib';
import { ApplicationCommandOptionType } from 'discord.js';
export default class UuidCommand extends BotCommand {
public constructor() {
super('uuid', {
aliases: ['uuid'],
category: 'utilities',
description: "Find someone's minecraft uuid",
usage: ['uuid <ign>'],
examples: ['uuid ironm00n'],
args: [
{
id: 'ign',
description: 'The ign to find the ign of.',
customType: /^\w{1,16}$/im,
readableType: 'string[1,16]',
prompt: 'What ign would you like to find the uuid of?',
retry: '{error} Choose a valid ign.',
slashType: ApplicationCommandOptionType.String
},
{
id: 'dashed',
description: 'Include dashes in the uuid.',
match: 'flag',
flag: ['--dashed', '-d'],
prompt: 'Would you like to include dashes in the uuid?',
slashType: ApplicationCommandOptionType.Boolean,
optional: true
}
],
slash: true,
clientPermissions: [],
userPermissions: []
});
}
public override async exec(
message: CommandMessage | SlashMessage,
args: { ign: ArgType<'regex'> | string; dashed: ArgType<'flag'> }
) {
if (typeof args.ign === 'string') args.ign = { match: args.ign.match(/\w{1,16}/im)!, matches: [] };
if (!args.ign.match) return await message.util.reply(`${emojis.error} Please enter a valid ign.`);
const readableIGN = args.ign.match[0];
try {
const uuid = await mcUUID(readableIGN, args.dashed);
return await message.util.reply({
content: `The uuid for ${format.input(readableIGN)} is ${format.input(uuid)}`,
allowedMentions: AllowedMentions.none()
});
} catch (e) {
return await message.util.reply({
content: `${emojis.error} Could not find an uuid for ${format.input(readableIGN)}.`,
allowedMentions: AllowedMentions.none()
});
}
}
}
|