aboutsummaryrefslogtreecommitdiff
path: root/src/commands
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands')
-rw-r--r--src/commands/leveling/setLevel.ts6
-rw-r--r--src/commands/leveling/setXp.ts78
2 files changed, 81 insertions, 3 deletions
diff --git a/src/commands/leveling/setLevel.ts b/src/commands/leveling/setLevel.ts
index be3700a..5eb97b7 100644
--- a/src/commands/leveling/setLevel.ts
+++ b/src/commands/leveling/setLevel.ts
@@ -54,8 +54,6 @@ export default class SetLevelCommand extends BushCommand {
message: BushMessage | BushSlashMessage,
{ user, level }: { user: User; level: number }
): Promise<unknown> {
- if (!message.author.isOwner())
- return await message.util.reply(`${util.emojis.error} Only my developers can run this command.`);
if (!message.guild) return await message.util.reply(`${util.emojis.error} This command can only be run in a guild.`);
if (!user.id) throw new Error('user.id is null');
@@ -71,7 +69,9 @@ export default class SetLevelCommand extends BushCommand {
});
await levelEntry.update({ xp: Level.convertLevelToXp(level) });
return await message.util.send({
- content: `Successfully set level of <@${user.id}> to \`${level}\` (\`${levelEntry.xp}\` XP)`,
+ content: `Successfully set level of <@${
+ user.id
+ }> to \`${level.toLocaleString()}\` (\`${levelEntry.xp.toLocaleString()}\` XP)`,
allowedMentions: AllowedMentions.none()
});
}
diff --git a/src/commands/leveling/setXp.ts b/src/commands/leveling/setXp.ts
new file mode 100644
index 0000000..4a07519
--- /dev/null
+++ b/src/commands/leveling/setXp.ts
@@ -0,0 +1,78 @@
+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.'
+ }
+ },
+ {
+ id: 'xp',
+ type: 'abbreviatedNumber',
+ prompt: {
+ start: 'How much xp should the user have?',
+ retry: "{error} Choose a valid number to set the user's xp to."
+ }
+ }
+ ],
+ 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 (!user.id) throw new Error('user.id is null');
+
+ 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 });
+ 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()
+ });
+ }
+}