This repository was archived by the owner on Mar 5, 2021. It is now read-only.
Version 1.1.0
New features:
- Bot Spam
- Random Blook Chooser (suggestion from #4 by @Justiniscoding)
- Auto Correct function (idea to change complicated command to function from #2 by @Justiniscoding)
Bugs Fixed:
- Blooket changed API url from www.blooket.com/api/ to api.blooket.com/api/ (Used by module
getdatain functiongetquestions) - Change WebSockets with Blooket's WebSocket changes
function getquestions(id) {
return new Promise(async(resolve, reject) => {
res = await got(`https://api.blooket.com/api/games?gameId=${id}\`)
questiondata = JSON.parse(res.body)
return resolve(questiondata)
});
}