FridayNightFunkinBoyfriendBot/modules/command_loop_manager.js

23 lines
465 B
JavaScript
Raw Normal View History

2024-01-12 12:24:01 -05:00
function command_loop_manager (bot, options) {
2023-12-17 14:55:27 -05:00
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 = []
}
}
2024-01-12 12:24:01 -05:00
2023-12-17 14:55:27 -05:00
}
2024-01-12 12:24:01 -05:00
module.exports = command_loop_manager