owobot/plugins/cloop.js

24 lines
534 B
JavaScript
Raw Normal View History

module.exports = {
2024-08-12 05:13:32 -04:00
load: (b) => {
b.cloops = []
b.addCloop = function (command, rate) {
b.cloops.push({
command,
rate,
interval: setInterval(() => { b.ccq.push(command) }, rate)
})
b.ccq.push(command)
2024-07-27 02:39:18 -04:00
}
b.removeCloop = function (index) {
clearInterval(b.cloops[index].interval)
b.cloops.splice(index, 1)
}
b.clearCloops = function () {
for (const i in b.cloops) {
clearInterval(b.cloops[i].interval)
}
b.cloops = []
}
}
}