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
|
import { BotCommand } from '../../lib/extensions/BotCommand';
import AllowedMentions from '../../lib/utils/AllowedMentions';
import { Message, WebhookClient } from 'discord.js';
import { TextChannel } from 'discord.js';
import { NewsChannel } from 'discord.js';
export default class GiveawayPingCommand extends BotCommand {
constructor() {
super('giveawayping', {
aliases: ['giveawayping', 'giveawaypong'],
category: "Moulberry's Bush",
description: {
content: 'Pings the giveaway role.',
usage: 'giveawayping',
examples: ['giveawayping']
},
clientPermissions: ['MANAGE_MESSAGES'],
userPermissions: [
'SEND_MESSAGES',
'MANAGE_GUILD',
'MANAGE_MESSAGES',
'BAN_MEMBERS',
'KICK_MEMBERS',
'VIEW_CHANNEL'
],
channel: 'guild',
ignoreCooldown: [],
ignorePermissions: [],
cooldown: 1.44e7, //4 hours
ratelimit: 1,
editable: false
});
}
public async exec(message: Message): Promise<unknown> {
if (message.guild.id !== '516977525906341928')
return message.reply(
"<:error:837123021016924261> This command may only be run in Moulberry's Bush."
);
if (
!['767782084981817344', '833855738501267456'].includes(message.channel.id)
)
return message.reply(
'<:error:837123021016924261> This command may only be run in giveaway channels.'
);
await message.delete().catch(() => undefined);
const webhooks = await (
message.channel as TextChannel | NewsChannel
).fetchWebhooks();
let webhookClient: WebhookClient;
if (webhooks.size < 1) {
const webhook = await (
message.channel as TextChannel | NewsChannel
).createWebhook('Giveaway ping webhook');
webhookClient = new WebhookClient(webhook.id, webhook.token);
} else {
const webhook = webhooks.first();
webhookClient = new WebhookClient(webhook.id, webhook.token);
}
return webhookClient.send(
'🎉 <@&767782793261875210> Giveaway.\n\n<:mad:783046135392239626> Spamming, line breaking, gibberish etc. disqualifies you from winning. We can and will ban you from giveaways. Winners will all be checked and rerolled if needed.',
{
username: `${message.member.nickname || message.author.username}`,
avatarURL: message.author.avatarURL({ dynamic: true }),
allowedMentions: AllowedMentions.roles()
}
);
}
}
|