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[2] === 'undefined') { |
9 |
await msg.reply({ |
10 |
embeds: [ |
11 |
new MessageEmbed() |
12 |
.setColor('#f14a60') |
13 |
.setDescription(`This command requires at least three arguments.`) |
14 |
] |
15 |
}); |
16 |
|
17 |
return; |
18 |
} |
19 |
|
20 |
const time1 = ms(cm.args[0]); |
21 |
const time2 = ms(cm.args[1]); |
22 |
|
23 |
if (!time1 || !time2) { |
24 |
await msg.reply({ |
25 |
embeds: [ |
26 |
new MessageEmbed() |
27 |
.setColor('#f14a60') |
28 |
.setDescription(`Invalid time interval given.`) |
29 |
] |
30 |
}); |
31 |
|
32 |
return; |
33 |
} |
34 |
|
35 |
var ch = await msg.mentions?.channels?.last(); |
36 |
let text; |
37 |
let args = [...cm.args]; |
38 |
args.shift(); |
39 |
args.shift(); |
40 |
|
41 |
if (typeof ch !== 'object' || ch === null) { |
42 |
ch = msg.channel; |
43 |
} |
44 |
else { |
45 |
args.pop(); |
46 |
} |
47 |
|
48 |
text = args.join(' '); |
49 |
|
50 |
try { |
51 |
await setTimeoutv2('send-expire.js', time1, text, ch.id, msg.guild.id, time2); |
52 |
} |
53 |
catch(e) { |
54 |
console.log(e); |
55 |
|
56 |
await msg.reply({ |
57 |
embeds: [ |
58 |
new MessageEmbed() |
59 |
.setColor('#f14a60') |
60 |
.setDescription(`I don't have enough permission to send messages on this channel.`) |
61 |
] |
62 |
}); |
63 |
|
64 |
return; |
65 |
} |
66 |
|
67 |
await msg.react('⏰'); |
68 |
} |
69 |
}; |