aboutsummaryrefslogtreecommitdiff
path: root/src/commands/dev/__template.ts
blob: 0d25766a665a7c416533befd42d4b4b51f2f2faa (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
import { BushCommand, BushMessage, BushSlashMessage } from '@lib';

export default class TemplateCommand extends BushCommand {
	public constructor() {
		super('template', {
			aliases: ['template'],
			category: 'template',
			description: {
				content: 'Command description.',
				usage: ['template <requiredArg> [optionalArg]'],
				examples: ['template 1 2']
			},
			args: [
				{
					id: 'required_argument',
					type: 'string',
					prompt: {
						start: 'What would you like to set your first argument to be?',
						retry: '{error} Pick a valid argument.',
						optional: false
					}
				},
				{
					id: 'optional_argument',
					type: 'string',
					prompt: {
						start: 'What would you like to set your second argument to be?',
						retry: '{error} Pick a valid argument.',
						optional: true
					}
				}
			],
			slash: false, //set this to true
			slashOptions: [
				{
					name: 'required_argument',
					description: 'What would you like to set your first argument to be?',
					type: 'STRING',
					required: true
				},
				{
					name: 'optional_argument',
					description: 'What would you like to set your second argument to be?',
					type: 'STRING',
					required: false
				}
			],
			superUserOnly: true,
			ownerOnly: true,
			channel: 'guild',
			hidden: true,
			clientPermissions: (m) => util.clientSendAndPermCheck(m),
			userPermissions: []
		});
	}
	public override async exec(
		message: BushMessage | BushSlashMessage,
		args: { required_argument: string; optional_argument: string }
	) {
		return await message.util.reply(`${util.emojis.error} Do not use the template command.`);
		args;
	}
}