CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
Shploop

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: Shploop/Blooket-Cheats
Path: blob/main/cheats/tower-defense/earthquake.js
Views: 1236
1
/**
2
* @license StewartPrivateLicense-2.0.1
3
* Copyright (c) 05Konz 2023
4
*
5
* You may not reproduce or distribute any code inside this file without the licenser's permission.
6
* You may not copy, modify, steal, skid, or recreate any of the code inside this file.
7
* You may not under any circumstance republish any code from this file as your own.
8
*
9
* ALL TERMS STATED IN THE LINK BELOW APPLY ASWELL
10
* https://github.com/05Konz/Blooket-Cheats/blob/main/LICENSE
11
*/
12
13
/* THE UPDATE CHECKER IS ADDED DURING COMMIT PREP, THERE MAY BE REDUNDANT CODE, DO NOT TOUCH */
14
15
(() => {
16
const cheat = (async () => {
17
let { stateNode } = Object.values((function react(r = document.querySelector("body>div")) { return Object.values(r)[1]?.children?.[0]?._owner.stateNode ? r : react(r.querySelector(":scope>div")) })())[1].children[0]._owner;
18
stateNode.setState({
19
eventName: "Earthquake",
20
event: {
21
short: "e",
22
color: "#805500",
23
icon: "fas fa-mountain",
24
desc: "All of your towers get mixed up",
25
rate: .02
26
},
27
buyTowerName: "",
28
buyTower: {}
29
}, () => stateNode.eventTimeout = setTimeout(() => stateNode.setState({ event: {}, eventName: "" }), 6e3));
30
stateNode.tiles.forEach(row => row.forEach((col, i) => col === 3 && (row[i] = 0)));
31
let tiles = stateNode.tiles.flatMap((_, y) => _.map((__, x) => __ === 0 && ({ x, y }))).filter(Boolean).sort(() => .5 - Math.random());
32
stateNode.towers.forEach(tower => {
33
let { x, y } = tiles.shift();
34
tower.move(x, y, stateNode.tileSize);
35
stateNode.tiles[y][x] = 3;
36
});
37
});
38
let img = new Image;
39
img.src = "https://raw.githubusercontent.com/05Konz/Blooket-Cheats/main/autoupdate/timestamps/tower-defense/earthquake.png?" + Date.now();
40
img.crossOrigin = "Anonymous";
41
img.onload = function() {
42
const c = document.createElement("canvas");
43
const ctx = c.getContext("2d");
44
ctx.drawImage(img, 0, 0, this.width, this.height);
45
let { data } = ctx.getImageData(0, 0, this.width, this.height), decode = "", last;
46
for (let i = 0; i < data.length; i += 4) {
47
let char = String.fromCharCode(data[i + 1] * 256 + data[i + 2]);
48
decode += char;
49
if (char == "/" && last == "*") break;
50
last = char;
51
}
52
let iframe = document.querySelector("iframe");
53
const [_, time, error] = decode.match(/LastUpdated: (.+?); ErrorMessage: "(.+?)"/);
54
if (parseInt(time) <= 1693429947590 || iframe.contentWindow.confirm(error)) cheat();
55
}
56
img.onerror = img.onabort = () => (img.src = null, cheat());
57
})();
58