Times Tables Rock Stars Hack

An overpowered ttrs cheat.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Аўтар
Learn with Faisal تعلم معَ فيصل
Усталяванняў за дзень
5
Усяго ўсталяванняў
547
Рэйтынг
0 1 0
Версія
4.24.1016
Створаны
20.10.2024
Абноўлены
20.10.2024
Памер
2.8 КБ
Ліцэнзія
MIT
Ужываецца на

// ==UserScript==
// @name Times Tables Rock Stars Hack
// @namespace http://tampermonkey.net/
// @version 4.24.1016
// @description An overpowered ttrs cheat.
// @author You
// @match https://play.ttrockstars.com/*
// @icon https://play.ttrockstars.com/ttrs-favicon.png
// @grant none
// @license MIT
// @downloadURL https://update.greasyfork.org/scripts/486036/Times%20Tables%20Rock%20Stars%20Hack.user.js
// @updateURL https://update.greasyfork.org/scripts/486036/Times%20Tables%20Rock%20Stars%20Hack.meta.js
// ==/UserScript==


console.log("Initialisation complete!")
alert("Welcome to the best ttrs hack in the world. Press the space bar to auto answer a question for you. Do not press the spacebar too fast or the game's anticheat will kick you out.")
alert("Script made by Caronnavirus")


document.addEventListener('keydown', (e) => {

if(e.code == "Space") {
let ans
let question

let zero = document.querySelector("ttr-game-numpad > div > div:nth-child(4) > div.key-n.key-shade")
let one = document.querySelector("ttr-game-numpad > div > div:nth-child(1) > div:nth-child(1)")
let two = document.querySelector("ttr-game-numpad > div > div:nth-child(1) > div:nth-child(2)")
let three = document.querySelector("ttr-game-numpad > div > div:nth-child(1) > div:nth-child(3)")
let four = document.querySelector("ttr-game-numpad > div > div:nth-child(2) > div:nth-child(1)")
let five = document.querySelector("ttr-game-numpad > div > div:nth-child(2) > div:nth-child(2)")
let six = document.querySelector("ttr-game-numpad > div > div:nth-child(2) > div:nth-child(3)")
let seven = document.querySelector("ttr-game-numpad > div > div:nth-child(3) > div:nth-child(1)")
let eight = document.querySelector("ttr-game-numpad > div > div:nth-child(3) > div:nth-child(2)")
let nine = document.querySelector("ttr-game-numpad > div > div:nth-child(3) > div:nth-child(3)")
let enter = document.querySelector("ttr-game-numpad > div > div:nth-child(4) > div.key-ent.ng-star-inserted")

let keys = [zero, one, two, three, four, five, six, seven, eight, nine]


question = document.querySelector("ttr-game-question:nth-child(2)").innerText
question = question.replace("×", "*");
question = question.replace("÷", "/");
ans = eval(question);


if(ans.toString().length == 1) {
keys[ans.toString()].click()

}
if(ans.toString().length == 2) {
keys[ans.toString().charAt(0)].click()
keys[ans.toString().charAt(1)].click()

}
if(ans.toString().length == 3) {
keys[ans.toString().charAt(0)].click()
keys[ans.toString().charAt(1)].click()
keys[ans.toString().charAt(2)].click()

}
enter.click()




}
})