FNFGirlfriendBot/modules/command_loop_manager.js
2024-02-20 17:19:33 +00:00

21 lines
430 B
JavaScript

function inject (bot, options) {
bot.cloop = {
list: [],
add (command, interval) {
this.list.push({ timer: setInterval(() => bot.core.run(command), interval), command, interval })
},
remove (index) {
clearInterval(this.list[index].timer)
},
clear () {
for (const cloop of this.list) clearInterval(cloop.timer)
this.list = []
}
}
}
module.exports = inject