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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
import {
AllowedMentions,
BotCommand,
clientSendAndPermCheck,
emojis,
format,
Level,
type ArgType,
type CommandMessage,
type SlashMessage
} from '#lib';
import assert from 'assert/strict';
import { ApplicationCommandOptionType, PermissionFlagsBits } from 'discord.js';
export default class SetXpCommand extends BotCommand {
public constructor() {
super('setXp', {
aliases: ['set-xp'],
category: 'leveling',
description: 'Sets the xp of a user',
usage: ['set-xp <user> <xp>'],
examples: ['set-xp @Moulberry 69k'], //nice
args: [
{
id: 'user',
description: 'The user to set the xp of.',
type: 'user',
prompt: 'What user would you like to change the xp of?',
retry: '{error} Choose a valid user to change the xp of.',
slashType: ApplicationCommandOptionType.User
},
{
id: 'xp',
description: 'The xp to set the user to.',
type: 'abbreviatedNumber',
match: 'restContent',
prompt: 'How much xp should the user have?',
retry: "{error} Choose a valid number to set the user's xp to.",
slashType: ApplicationCommandOptionType.Integer
}
],
slash: true,
channel: 'guild',
clientPermissions: (m) => clientSendAndPermCheck(m),
userPermissions: [PermissionFlagsBits.Administrator]
});
}
public override async exec(
message: CommandMessage | SlashMessage,
{ user, xp }: { user: ArgType<'user'>; xp: ArgType<'abbreviatedNumber'> }
) {
assert(message.inGuild());
assert(user.id);
if (isNaN(xp)) return await message.util.reply(`${emojis.error} Provide a valid number.`);
if (xp > 2147483647 || xp < 0)
return await message.util.reply(
`${emojis.error} Provide an positive integer under **2,147,483,647** to set the user's xp to.`
);
const [levelEntry] = await Level.findOrBuild({
where: { user: user.id, guild: message.guild.id },
defaults: { user: user.id, guild: message.guild.id }
});
await levelEntry.update({ xp: xp, user: user.id, guild: message.guild.id });
return await message.util.send({
content: `Successfully set <@${user.id}>'s xp to ${format.input(levelEntry.xp.toLocaleString())} (level ${format.input(
Level.convertXpToLevel(levelEntry.xp).toLocaleString()
)}).`,
allowedMentions: AllowedMentions.none()
});
}
}
|