Skip to content

Instantly share code, notes, and snippets.

@zakcodez
Forked from ITHackCentral/Mathletics Hack Code
Last active October 29, 2023 10:30
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zakcodez/9f8b6ab2221b3520069ed988e2b391e2 to your computer and use it in GitHub Desktop.
Save zakcodez/9f8b6ab2221b3520069ed988e2b391e2 to your computer and use it in GitHub Desktop.
Use in Live Mathletics
var time = 60; var clock = 300; function TimeHack() {
setInterval(function Applytime() {
document.getElementsByClassName('timerLabel whiteTextWithShadow font-60 ng-binding')["0"].innerText = time; document.getElementsByClassName('timerLabel whiteTextWithShadow font-60 ng-binding')["0"].innerHtml = time;
document.getElementsByClassName('clockHand').rotate = clock;
}, 1);
}; function TimeHackm() {
setInterval(function Addtime() {
time = time + 1;
clock = clock + 6;
}, 1000);
}
var score = 1;
function ScoreHack() {
setInterval(function ApplyScore() {
score = score + 1
document.getElementById("scoreBar0").innerText = score;
}, 1);
};
alert("YOU ARE USING I_T_HackCentral's ML CHEAT! ENJOY!")
function ShowAwnser() {
var inntext = document.getElementsByClassName('questions-text-alignment whiteTextWithShadow question-size-v4')["0"].innerText;
var awnser = eval((inntext.split("=")[0]).trim())
document.getElementsByClassName("questions-input-adjustment")["0"].value = awnser;
}
window.addEventListener("keydown", checkKeyPressed, false);
function checkKeyPressed(e) {
if (e.keyCode == "65") {
ShowAwnser()
}
}
@zakcodez
Copy link
Author

zakcodez commented Nov 11, 2022

How to use it:

  1. Copy all the code above
  2. Go to Mathletics
  3. Right click and click Inspect
  4. Click on Sources & press Ctrl + F8.
  5. Reload the page
  6. Click on console
  7. Paste the code there and then press enter
  8. While in a game, spam A then enter until 45 seconds

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment