Replies: 2 comments 6 replies
-
Wait Can a pls have a gui |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
this is gonna be a bit of a long one so hear me out. a few months ago when gliz got the cease and desist from blooket, some dude released the unobfuscated version of gliz's boosters only gui. idk how he got it, but the repo it was in got deleted pretty quickly. i was able to download it though, but it stopped working when blooket blocked the alert function. the gui had a "highlight answers" hack, and for some reason it doesn't work. it was supposed to turn the correct answer box green and all the other answer boxes red, but it only works when the correct answer is in the upper left hand corner box, and it doesnt turn the other boxes red. heres the code:
function reactHandler() { return Object.values(document.querySelector('#app > div > div'))[1].children[1]._owner; }; loop = setInterval(() => { try { Array.from(document.querySelector('div[class*="answersHolder"').children).forEach(x => { if (reactHandler().memoizedState.question.correctAnswers.includes(x.innerText) || reactHandler().memoizedProps.client.question.correctAnswers.includes(x.innerText)) x.firstChild.style = 'color: rgb(0, 207, 119);'; else x.firstChild.style = 'color: rgb(225, 40, 33);'; }); } catch { } });
i was wondering if maybe someone could tell me what's wrong with it. if not, that's fine, it's not a big deal.
Beta Was this translation helpful? Give feedback.
All reactions