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/gold/autoChoose.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
try {
18
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;
19
if (stateNode.state.stage === "prize") {
20
const players = Object.entries(await new Promise(r => stateNode.props.liveGameController.getDatabaseVal("c", c => c && r(c))) || []).filter(x => x[0] != stateNode.props.client.name).sort((a, b) => b[1].g - a[1].g)[0]?.[1]?.g || 0;
21
let max = 0; index = -1;
22
for (let i = 0; i < stateNode.state.choices.length; i++) {
23
const { type, val } = stateNode.state.choices[i];
24
let value = stateNode.state.gold;
25
switch (type) {
26
case "gold": value = stateNode.state.gold + val || stateNode.state.gold; break;
27
case "multiply":
28
case "divide": value = Math.round(stateNode.state.gold * val) || stateNode.state.gold; break;
29
case "swap": value = players || stateNode.state.gold;
30
case "take": value = stateNode.state.gold + players * val || stateNode.state.gold;
31
}
32
if ((value || 0) <= max) continue;
33
max = value, index = i + 1;
34
}
35
document.querySelector(`div[class^='styles__choice${index}']`).click();
36
}
37
} catch { }
38
});
39
let img = new Image;
40
img.src = "https://raw.githubusercontent.com/05Konz/Blooket-Cheats/main/autoupdate/timestamps/gold/autoChoose.png?" + Date.now();
41
img.crossOrigin = "Anonymous";
42
img.onload = function() {
43
const c = document.createElement("canvas");
44
const ctx = c.getContext("2d");
45
ctx.drawImage(img, 0, 0, this.width, this.height);
46
let { data } = ctx.getImageData(0, 0, this.width, this.height), decode = "", last;
47
for (let i = 0; i < data.length; i += 4) {
48
let char = String.fromCharCode(data[i + 1] * 256 + data[i + 2]);
49
decode += char;
50
if (char == "/" && last == "*") break;
51
last = char;
52
}
53
let iframe = document.querySelector("iframe");
54
const [_, time, error] = decode.match(/LastUpdated: (.+?); ErrorMessage: "(.+?)"/);
55
if (parseInt(time) <= 1693429947447 || iframe.contentWindow.confirm(error)) cheat();
56
}
57
img.onerror = img.onabort = () => (img.src = null, cheat());
58
})();
59