2024-07-30 05:56:23 -04:00
|
|
|
module.exports = {
|
|
|
|
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)
|
|
|
|
}
|
2024-08-04 17:40:00 -04:00
|
|
|
}, 100)
|
2024-07-30 05:56:23 -04:00
|
|
|
})
|
|
|
|
b.chatqueue = []
|
|
|
|
b.chat = function chat (msg) {
|
|
|
|
if (msg.length === 0) return
|
2024-08-04 03:04:09 -04:00
|
|
|
msg.match(/.{1,255}/g).forEach(element => {
|
2024-07-30 05:56:23 -04:00
|
|
|
b.chatqueue.push(element)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|