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
|
import { BushCommand, BushUser, type BushMessage, type BushSlashMessage } from '#lib';
export default class DMCommand extends BushCommand {
public constructor() {
super('dm', {
aliases: ['dm'],
category: 'dev',
description: 'Send a direct message to a specified user from the bot.',
usage: ['dm <user> <content>'],
examples: ['dm IRONM00N hi'],
args: [
{
id: 'user',
type: 'string',
description: 'The user to send the dm to.',
prompt: 'Who would you like to dm?',
retry: '{error} Pick a valid user to send a dm to.',
slashType: 'STRING'
},
{
id: 'content',
type: 'string',
description: 'This is the second argument.',
prompt: 'What would you like to set your second argument to be?',
retry: '{error} Pick a valid argument.',
optional: true,
slashType: 'STRING'
}
],
slash: false,
ownerOnly: true,
hidden: true,
clientPermissions: (m) => util.clientSendAndPermCheck(m),
userPermissions: []
});
}
public override async exec(message: BushMessage | BushSlashMessage, args: { user: BushUser; content: string }) {
try {
const u = await client.users.fetch(args.user.id);
await u.send(args.content);
} catch (e) {
return message.util.reply(`${util.emojis.error} There was an error sending ${util.format.input(args.user.tag)} a dm.`);
}
return message.util.reply(`${util.emojis.success} Successfully sent ${util.format.input(args.user.tag)} a dm.`);
}
}
|