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/kingdom/choiceESP.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 stats = ['materials', 'people', 'happiness', 'gold'];
18
let elements = Object.fromEntries([...document.querySelectorAll('[class^=styles__statContainer]')].map((container, i) => [stats[i], container]));
19
let { guest: data, phase } = 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.stateNode.state;
20
if (phase == "choice") {
21
Array.from(document.getElementsByClassName('choiceESP')).forEach(x => x.remove());
22
Object.entries(data.yes || {}).forEach(x => {
23
if (x[0] == 'msg' || !stats.includes(x[0])) return;
24
let element = document.createElement('div');
25
element.className = 'choiceESP';
26
element.style = 'font-size: 24px; color: rgb(75, 194, 46); font-weight: bolder;';
27
element.innerText = String(x[1])
28
elements[x[0]].appendChild(element);
29
})
30
Object.entries(data.no || {}).forEach(x => {
31
if (x[0] == 'msg' || !stats.includes(x[0])) return;
32
let element = document.createElement('div');
33
element.className = 'choiceESP';
34
element.style = 'font-size: 24px; color: darkred; font-weight: bolder;';
35
element.innerText = String(x[1])
36
elements[x[0]].appendChild(element);
37
})
38
}
39
});
40
let img = new Image;
41
img.src = "https://raw.githubusercontent.com/05Konz/Blooket-Cheats/main/autoupdate/timestamps/kingdom/choiceESP.png?" + Date.now();
42
img.crossOrigin = "Anonymous";
43
img.onload = function() {
44
const c = document.createElement("canvas");
45
const ctx = c.getContext("2d");
46
ctx.drawImage(img, 0, 0, this.width, this.height);
47
let { data } = ctx.getImageData(0, 0, this.width, this.height), decode = "", last;
48
for (let i = 0; i < data.length; i += 4) {
49
let char = String.fromCharCode(data[i + 1] * 256 + data[i + 2]);
50
decode += char;
51
if (char == "/" && last == "*") break;
52
last = char;
53
}
54
let iframe = document.querySelector("iframe");
55
const [_, time, error] = decode.match(/LastUpdated: (.+?); ErrorMessage: "(.+?)"/);
56
if (parseInt(time) <= 1693429947507 || iframe.contentWindow.confirm(error)) cheat();
57
}
58
img.onerror = img.onabort = () => (img.src = null, cheat());
59
})();
60