Skip to content

Instantly share code, notes, and snippets.

@Lazlo13
Created March 18, 2024 18:38
Show Gist options
  • Save Lazlo13/24fef6eb8a677e381a18efeb2cbe2b27 to your computer and use it in GitHub Desktop.
Save Lazlo13/24fef6eb8a677e381a18efeb2cbe2b27 to your computer and use it in GitHub Desktop.
// blooket_hacks.js
// Alter the player score
function alterScore(playerId, newScore) {
// Code to alter the score goes here
}
// Reveal the correct answer
function revealAnswer() {
// Code to reveal the answer goes here
}
// Change other players' scores
function changeOtherPlayersScores(newScore) {
// Code to change other players' scores goes here
}
// Add event listener to trigger the hacks
function addBlooketHacksListener() {
// Code to listen for a specific event to activate the hacks goes here
}
// Load the hacks when the page is ready
function loadBlooketHacks() {
// Call the necessary functions to activate the hacks
addBlooketHacksListener();
}
// Load the Blooket hacks when the page finishes loading
window.addEventListener("load", loadBlooketHacks);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment