/[sudobot]/trunk/commands/schedule.js
ViewVC logotype

Contents of /trunk/commands/schedule.js

Parent Directory Parent Directory | Revision Log Revision Log


Revision 46 - (show annotations)
Mon Jul 29 17:28:21 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: text/javascript
File size: 2001 byte(s)
Added clearTimeoutv2() function
1 const MessageEmbed = require("../src/MessageEmbed");
2 const { setTimeoutv2 } = require("../src/setTimeout");
3 const path = require('path');
4 const ms = require("ms");
5
6 module.exports = {
7 async handle(msg, cm) {
8 if (typeof cm.args[1] === 'undefined') {
9 await msg.reply({
10 embeds: [
11 new MessageEmbed()
12 .setColor('#f14a60')
13 .setDescription(`This command requires at least two arguments.`)
14 ]
15 });
16
17 return;
18 }
19
20 const time = ms(cm.args[0]);
21
22 if (!time) {
23 await msg.reply({
24 embeds: [
25 new MessageEmbed()
26 .setColor('#f14a60')
27 .setDescription(`Invalid time interval given.`)
28 ]
29 });
30
31 return;
32 }
33
34 var ch = await msg.mentions?.channels?.last();
35 let text;
36 let args = [...cm.args];
37 args.shift();
38
39 if (typeof ch !== 'object' || ch === null) {
40 ch = msg.channel;
41 }
42 else {
43 args.pop();
44 }
45
46 text = args.join(' ');
47
48 try {
49 const timeout = await setTimeoutv2('send.js', time, text, ch.id, msg.guild.id);
50
51 await msg.reply({
52 embeds: [
53 new MessageEmbed()
54 .setDescription('A queue job has been added.')
55 .setFooter({
56 text: 'ID: ' + timeout.row.id
57 })
58 ]
59 });
60 }
61 catch(e) {
62 console.log(e);
63
64 await msg.reply({
65 embeds: [
66 new MessageEmbed()
67 .setColor('#f14a60')
68 .setDescription(`I don't have enough permission to send messages on this channel.`)
69 ]
70 });
71
72 return;
73 }
74
75 await msg.react('⏰');
76 }
77 };

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26