1 |
rakin |
45 |
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 |
|
|
await setTimeoutv2('send.js', time, text, ch.id, msg.guild.id); |
50 |
|
|
} |
51 |
|
|
catch(e) { |
52 |
|
|
console.log(e); |
53 |
|
|
|
54 |
|
|
await msg.reply({ |
55 |
|
|
embeds: [ |
56 |
|
|
new MessageEmbed() |
57 |
|
|
.setColor('#f14a60') |
58 |
|
|
.setDescription(`I don't have enough permission to send messages on this channel.`) |
59 |
|
|
] |
60 |
|
|
}); |
61 |
|
|
|
62 |
|
|
return; |
63 |
|
|
} |
64 |
|
|
|
65 |
|
|
await msg.react('⏰'); |
66 |
|
|
} |
67 |
|
|
}; |