forked from SomnathDas/Whatsapp-Botto-Re
-
Notifications
You must be signed in to change notification settings - Fork 0
/
queue.js
41 lines (38 loc) · 1.11 KB
/
queue.js
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
const sendSticker = require('./sendSticker')
exports.mp3 = async function (message) {
for (let i = 0; i < queuemp3.length; i++) {
if (queuemp3[i].from == message.from) {
console.log(queuemp3[i].from)
yt.mp3(queuemp3[i])
queuemp3.splice(i, 1)
}
}
}
exports.mp4 = async function (message) {
for (let i = 0; i < queuemp4.length; i++) {
if (queuemp4[i].from == message.from) {
console.log(queuemp4[i].from)
yt.mp4(queuemp4[i])
queuemp4.splice(i, 1)
return
}
}
}
exports.sendSticker = async function (message) {
for (let i = 0; i < queueSticker.length; i++) {
if (queueSticker[i].from == message.from) {
console.log(queueSticker[i].from)
sendSticker.sendSticker(queueSticker[i])
queueSticker.splice(i, 1)
}
}
}
exports.sendAnimatedSticker = async function (message) {
for (let i = 0; i < queueAnimatedSticker.length; i++) {
if (queueAnimatedSticker[i].from == message.from) {
console.log(queueAnimatedSticker[i].from)
sendSticker.sendAnimatedSticker(queueAnimatedSticker[i])
queueAnimatedSticker.splice(i, 1)
}
}
}