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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
import { AllowedMentions, BushCommand, BushMessage, BushSlashMessage, Level } from '@lib';
import { User } from 'discord.js';
export default class SetXpCommand extends BushCommand {
public constructor() {
super('setXp', {
aliases: ['setxp'],
category: 'leveling',
description: {
content: 'Sets the xp of a user',
usage: 'setlevel <user> <xp>',
examples: ['setlevel @Moulberry 69k'] //nice
},
args: [
{
id: 'user',
type: 'user',
prompt: {
start: 'What user would you like to change the xp of?',
retry: '{error} Choose a valid user to change the xp of.',
required: true
}
},
{
id: 'xp',
type: 'abbreviatedNumber',
match: 'restContent',
prompt: {
start: 'How much xp should the user have?',
retry: "{error} Choose a valid number to set the user's xp to.",
required: true
}
}
],
slashOptions: [
{
name: 'user',
description: 'What user would you like to change the xp of?',
type: 'USER',
required: true
},
{
name: 'xp',
description: 'How much xp should the user have?',
type: 'INTEGER',
required: true
}
],
slash: true,
channel: 'guild',
clientPermissions: ['SEND_MESSAGES'],
userPermissions: ['SEND_MESSAGES', 'ADMINISTRATOR']
});
}
public override async exec(
message: BushMessage | BushSlashMessage,
{ user, xp }: { user: User; xp: number }
): Promise<unknown> {
if (!message.guild) return await message.util.reply(`${util.emojis.error} This command can only be run in a guild.`);
if (message.author.id === '496409778822709251')
return await message.util.reply(`${util.emojis.error} This command is Bestower proof.`);
if (!user.id) throw new Error('user.id is null');
if (isNaN(xp)) return await message.util.reply(`${util.emojis.error} Provide a valid number.`);
if (xp > 2147483647 || xp < 0)
return await message.util.reply(
`${util.emojis.error} Provide an positive integer under \`2147483647\` 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 \`${levelEntry.xp.toLocaleString()}\` (level \`${Level.convertXpToLevel(
levelEntry.xp
).toLocaleString()}\`).`,
allowedMentions: AllowedMentions.none()
});
}
}
|