aboutsummaryrefslogtreecommitdiff
path: root/src/commands/dev/setLevel.ts
blob: f2ae6c7e3e750af864c611f8b6e439606ca40cea (plain)
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
import { AllowedMentions, BushCommand, BushMessage, BushSlashMessage, Level } from '@lib';
import { User } from 'discord.js';

export default class SetLevelCommand extends BushCommand {
	public constructor() {
		super('setlevel', {
			aliases: ['setlevel'],
			category: 'dev',
			description: {
				content: 'Sets the level of a user',
				usage: 'setlevel <user> <level>',
				examples: ['setlevel @Moulberry 69'] //nice
			},
			args: [
				{
					id: 'user',
					type: 'user',
					prompt: {
						start: 'What user would you like to change the level of?',
						retry: '{error} Choose a valid user to change the level of.'
					}
				},
				{
					id: 'level',
					type: 'number',
					prompt: {
						start: 'What level would you like to set the user to?',
						retry: '{error} Choose a valid level to set the user to.'
					}
				}
			],
			slashOptions: [
				{
					name: 'user',
					description: 'What user would you like to change the level of?',
					type: 'USER',
					required: true
				},
				{
					name: 'level',
					description: 'What level would you like to set the user to?',
					type: 'INTEGER',
					required: true
				}
			],
			ownerOnly: true,
			slash: true
		});
	}

	async exec(message: BushMessage | BushSlashMessage, { user, level }: { user: User; level: number }): Promise<unknown> {
		if (!message.author.isOwner())
			return await message.util.reply(`${this.client.util.emojis.error} Only my developers can run this command.`);

		const [levelEntry] = await Level.findOrBuild({
			where: {
				id: user.id
			},
			defaults: {
				id: user.id
			}
		});
		await levelEntry.update({ xp: Level.convertLevelToXp(level) });
		return await message.util.send({
			content: `Successfully set level of <@${user.id}> to \`${level}\` (\`${levelEntry.xp}\` XP)`,
			allowedMentions: AllowedMentions.none()
		});
	}
}