botvX_mjs/plugins/cq.mjs
2024-08-19 14:26:01 -04:00

19 lines
460 B
JavaScript
Executable file

export default {
load: (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)
}
}, 100)
})
b.chatqueue = []
b.chat = function chat (msg) {
if (msg.length === 0) return
msg.match(/.{1,255}/g).forEach(element => {
b.chatqueue.push(element)
})
}
}
}