owobot/plugins/cq.js

23 lines
487 B
JavaScript
Raw Normal View History

module.exports = {
load: () => {
2024-07-27 02:39:18 -04:00
},
loadBot: (b) => {
b._client.on('login', () => {
b.interval.chatQueue = setInterval(() => {
if (b.chatqueue.length !== 0) {
b._client.chat(b.chatqueue[0])
b.chatqueue.splice(0, 1)
}
}, 150)
})
b.chatqueue = []
b.chat = function chat (msg) {
if (msg.length === 0) return
msg.match(/.{1,250}/g).forEach(element => {
b.chatqueue.push(element)
})
2024-07-27 02:39:18 -04:00
}
}
2024-07-27 02:39:18 -04:00
}