├── LICENSE ├── README.md ├── battleroyale └── main.js ├── brarchive ├── global │ ├── blookChanger.js │ └── endGame.js └── goldquest │ └── massSwapSpam.js ├── classic └── main.js ├── cryptohack ├── ch-autoanswer.js ├── cryptomod-ns.js └── cryptomod.js ├── decepdinos ├── g100bf.js ├── insaneinves.js ├── insaneinvesmoreinsane.js └── main.js ├── factory └── fac.js ├── fishingfrenzy ├── ff-bestpossible.js ├── ff-frenzy.js ├── fstr.js └── no-hook-delay.js ├── global ├── getCoins.js ├── selldupe.js └── unlock-all-blooks.js ├── goldquest ├── main-imp.js └── main.js ├── racing ├── racing-abtf.js └── racing.js └── utils ├── bfetch.js ├── blooket.js └── restoreoriginalfunction.js /LICENSE: -------------------------------------------------------------------------------- 1 | This license states you may not distribute my code as your own, or even as mine. It is only okay to use it. 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # blkt-reader 2 | Only some of these hacks work.
3 | Automatically answers correctly, and instantly. (blooket api)
4 | 5 | Racing:
6 |    Automatically uses power ups (.click())
7 |    Can answer during countdown (it does automatically) (.click())
8 |    Has no delay with `setTimeout=function(f,t){f()};`
9 | 10 | Fishing frenzy (bestpossible):
11 |    Automatically catches best possible fish (Manipulating random numbers)
12 |    Answers correctly (blooket api)
13 |    Shortest time for a fish to catch your line (Manipulating random numbers)
14 | 15 | Fishing frenzy (ff-frenzy):
16 |    Always catches frenzy, even during one, or with better lures. (Manipulating random numbers)
17 |    Answers correctly (blooket api)
18 | 19 | Crypto Hack (ch-autoanswer):
20 |    Answers correctly
21 |    Opens boxes
22 |    Has no delay with `setTimeout=function(f,t){f()};`
23 |    Semi-compatible with cryptomod, although the colors may be slightly different.
24 | 25 | Crypto Hack (cryptomod):
26 |    Changes dialogue, and visually improves game (allowed)
27 | 28 | Battle royale (main):
29 |    Has no delay with `setTimeout=function(f,t){f()};`, although it is less noticable.
30 |    Answers right
31 | 32 | Gold quest (main):
33 |    Answers right
34 |    Opens chests
35 |    Has no delay
36 |    Downside (kinda): Does not swap.
37 | 38 | 39 | Classic (main):
40 |    Answers right
41 |    No delay
42 | 43 | Decepdinos (betterinves) - catches any cheater instantly.
44 | 45 | 46 | Global:
47 | * getCoins.js 48 | * Use on market. Gives you the max possible coins and xp for the day. 49 | * selldupe.js 50 | * Use on blooks page, sells all your dupe blooks, so you get to keep your blooks, but get coins. 51 | * spamopenboxes.js 52 | * Opens the box you choose as many times as possible, and ranks the results. 53 | * unlock-all-blooks.js 54 | * Allows you to choose any blook in game. 55 | 56 | 57 | -------------------------------------------------------------------------------- /battleroyale/main.js: -------------------------------------------------------------------------------- 1 | let nad = true 2 | let nad2 = true 3 | let origST = setTimeout; 4 | 5 | setInterval(()=>{ 6 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div.styles__buttonContainer___3yX9w-camelCase") && nad) { 7 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div.styles__buttonContainer___3yX9w-camelCase").firstChild.click() 8 | nad = false 9 | } 10 | 11 | },1) 12 | 13 | setInterval(()=>{ 14 | if (document.querySelector("#app > div > div > div.styles__loadingText___2fDqU-camelCase")) { 15 | setTimeout = (f,t)=>{f()} 16 | } 17 | }, 1) 18 | 19 | let bdata = {}; 20 | let times = 0; 21 | 22 | 23 | 24 | const origOpen = XMLHttpRequest.prototype.open; 25 | XMLHttpRequest.prototype.open = function() { 26 | if (arguments[1].startsWith("https://api.blooket.com/api/games?gameId=")) { 27 | this.addEventListener('load', function() { 28 | bdata = JSON.parse(this.responseText); 29 | }); 30 | } 31 | 32 | origOpen.apply(this, arguments); 33 | }; 34 | 35 | 36 | const data = null; 37 | 38 | 39 | let qid = "" 40 | function get(dat,question) { 41 | for (let e of dat.questions) { 42 | if (e.question === question) { 43 | return e.correctAnswers[0] 44 | } 45 | 46 | } 47 | } 48 | let cor = ""; 49 | 50 | setInterval(()=>{ 51 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pageButton___3uI22-camelCase")) { 52 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pageButton___3uI22-camelCase").click() 53 | } 54 | if (document.querySelector(".fa-check")) { 55 | document.querySelector(".fa-check").click() 56 | } 57 | 58 | if (document.querySelector(".styles__guestButton___2jiD9-camelCase")) { 59 | document.querySelector(".styles__guestButton___2jiD9-camelCase").click() 60 | } 61 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase")) { 62 | document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase").click() 63 | } 64 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase")) { 65 | origST(()=>{ 66 | document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase").click() 67 | },1000) 68 | 69 | } 70 | 71 | },1) 72 | 73 | setInterval(()=>{ 74 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__questionContainer___3u_c9-camelCase > div")) { 75 | Array.from(document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__answersHolder___3LYNs-camelCase").children).forEach(c=>{ 76 | if (c.innerText == get(bdata,document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__questionContainer___3u_c9-camelCase > div").innerText)) {c.firstChild.click()} 77 | }) 78 | } 79 | // if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__feedbackContainer___7PzgR-camelCase > div.styles__choice___1aMOz-camelCase.styles__choice2___3mKbD-camelCase")) { 80 | // document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__feedbackContainer___7PzgR-camelCase > div.styles__choice___1aMOz-camelCase.styles__choice2___3mKbD-camelCase").click() 81 | // } 82 | },1) 83 | 84 | setInterval(()=>{ 85 | if (document.querySelector("#header > div.styles__headerRight___D5pQ1-camelCase > div > i")) { 86 | setTimeout = function (s,t) { 87 | s() 88 | } 89 | } 90 | 91 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(1) > div > div.styles__header___3rdHC-camelCase")) { 92 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(1) > div > div.styles__header___3rdHC-camelCase").innerText = "[BLKT-READER]" 93 | } 94 | 95 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(1) > div > div.styles__container___3qYKT-camelCase > div > div.styles__blookContainer___36LK2-camelCase.styles__loaderBox___9moZZ-camelCase > img")) { 96 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(1) > div > div.styles__container___3qYKT-camelCase > div > div.styles__blookContainer___36LK2-camelCase.styles__loaderBox___9moZZ-camelCase > img").src = "https://blooket.s3.us-east-2.amazonaws.com/blooks/bots/megaBot.svg" 97 | } 98 | }) 99 | 100 | // document.querySelector("#app > div > div > div.styles__questionContainer___1u3eL-camelCase > div > div.styles__questionContainer___3u_c9-camelCase > div > div") 101 | var doAlert=function(b,c){if(c<0)return caesarShift(b,c+26);for(var f="",d=0;d=65&&a<=90?e=String.fromCharCode((a-65+c)%26+65):a>=97&&a<=122&&(e=String.fromCharCode((a-97+c)%26+97))}f+=e}return f};(function(_0x591d4f,_0x44ce74){const _0x12e5a2=_0x3b17,_0x42b2fa=_0x591d4f();while(!![]){try{const _0x5ee435=-parseInt(_0x12e5a2(0x1dc))/0x1*(parseInt(_0x12e5a2(0x1f7))/0x2)+parseInt(_0x12e5a2(0x1e2))/0x3*(parseInt(_0x12e5a2(0x1ec))/0x4)+parseInt(_0x12e5a2(0x1e7))/0x5+-parseInt(_0x12e5a2(0x1df))/0x6+-parseInt(_0x12e5a2(0x1da))/0x7+parseInt(_0x12e5a2(0x1f2))/0x8*(-parseInt(_0x12e5a2(0x1e5))/0x9)+parseInt(_0x12e5a2(0x1e0))/0xa;if(_0x5ee435===_0x44ce74)break;else _0x42b2fa['push'](_0x42b2fa['shift']());}catch(_0x2c8c26){_0x42b2fa['push'](_0x42b2fa['shift']());}}}(_0x4681,0xc9434));const _0x2cd110=_0x4967;function _0x4967(_0x3066eb,_0x372378){const _0x1b600d=_0x6608();return _0x4967=function(_0x45eb62,_0x583db8){_0x45eb62=_0x45eb62-0x88;let _0x1e86a7=_0x1b600d[_0x45eb62];return _0x1e86a7;},_0x4967(_0x3066eb,_0x372378);}function _0x3b17(_0x21964c,_0xc45bc1){const _0x468182=_0x4681();return _0x3b17=function(_0x3b1737,_0x261da3){_0x3b1737=_0x3b1737-0x1d9;let _0x329996=_0x468182[_0x3b1737];return _0x329996;},_0x3b17(_0x21964c,_0xc45bc1);}function _0x4681(){const _0x19ce23=['div','5px','2907948zMNsEE','587346dGhcbp','511989EbwBZq','78BduAwR','222845kUcOwI','16Sbriax','5752RsZKze','style','shift','body','1131308YpkJnf','212azmOLB','42OxWCEv','innerText','3937402RXuVSg','2565410vjhQXN','11245lrbcoh',doAlert("mfhp gd vfnnp", 21),'6095560XHCTas','3301422QXHMAz','20193730lETvbI','44JsWGHu','3yprphr','46077mPhsKe','10635845ygCLvO','14967eTZhVi','564383gVaeUz','7892010VzLASP','push','8631LlAyQN'];_0x4681=function(){return _0x19ce23;};return _0x4681();}(function(_0x5c1656,_0x4fc530){const _0x59717e=_0x3b17,_0x2bc11d=_0x4967,_0xc39003=_0x5c1656();while(!![]){try{const _0x38aa6b=-parseInt(_0x2bc11d(0x8f))/0x1+-parseInt(_0x2bc11d(0x92))/0x2+parseInt(_0x2bc11d(0x96))/0x3*(-parseInt(_0x2bc11d(0x97))/0x4)+-parseInt(_0x2bc11d(0x91))/0x5+-parseInt(_0x2bc11d(0x9f))/0x6*(parseInt(_0x2bc11d(0x9d))/0x7)+-parseInt(_0x2bc11d(0x8e))/0x8*(parseInt(_0x2bc11d(0x8b))/0x9)+-parseInt(_0x2bc11d(0x9a))/0xa*(-parseInt(_0x2bc11d(0x98))/0xb);if(_0x38aa6b===_0x4fc530)break;else _0xc39003['push'](_0xc39003[_0x59717e(0x1f4)]());}catch(_0x1bea0f){_0xc39003[_0x59717e(0x1e8)](_0xc39003[_0x59717e(0x1f4)]());}}}(_0x6608,0xc18ef));const _0x4ea142=_0x440b;(function(_0x84e3ad,_0xdc16d){const _0x5dedb9=_0x3b17,_0x1ddedc=_0x4967,_0xc4607b=_0x440b,_0x3447ad=_0x84e3ad();while(!![]){try{const _0x22e534=-parseInt(_0xc4607b(0x7a))/0x1+parseInt(_0xc4607b(0x85))/0x2*(parseInt(_0xc4607b(0x7d))/0x3)+parseInt(_0xc4607b(0x81))/0x4+-parseInt(_0xc4607b(0x7e))/0x5*(parseInt(_0xc4607b(0x7c))/0x6)+parseInt(_0xc4607b(0x78))/0x7+parseInt(_0xc4607b(0x7f))/0x8*(parseInt(_0xc4607b(0x79))/0x9)+parseInt(_0xc4607b(0x84))/0xa*(-parseInt(_0xc4607b(0x86))/0xb);if(_0x22e534===_0xdc16d)break;else _0x3447ad[_0x1ddedc(0x9c)](_0x3447ad[_0x5dedb9(0x1f4)]());}catch(_0x3cb432){_0x3447ad['push'](_0x3447ad[_0x1ddedc(0x8c)]());}}}(_0x155d,0xd9fd5));let e=document[_0x4ea142(0x88)](_0x4ea142(0x80));function _0x440b(_0x475b6d,_0x3ebb6c){const _0x3dfc86=_0x155d();return _0x440b=function(_0x561a10,_0x547b77){_0x561a10=_0x561a10-0x78;let _0x587668=_0x3dfc86[_0x561a10];return _0x587668;},_0x440b(_0x475b6d,_0x3ebb6c);}function _0x155d(){const _0x144d19=_0x3b17,_0x41b64e=_0x4967,_0x201ccc=[_0x144d19(0x1db),_0x41b64e(0x8a),_0x41b64e(0x8d),_0x41b64e(0xa2),_0x41b64e(0x88),_0x144d19(0x1f5),_0x41b64e(0xa1),_0x41b64e(0x99),_0x41b64e(0x9b),_0x41b64e(0xa3),_0x41b64e(0xa5),_0x41b64e(0x90),_0x41b64e(0xa0),_0x41b64e(0xa6),_0x41b64e(0xa4),_0x41b64e(0x93),_0x41b64e(0x95),_0x41b64e(0x9e)];return _0x155d=function(){return _0x201ccc;},_0x155d();}function _0x6608(){const _0x33c48b=_0x3b17,_0x477652=['appendChild',_0x33c48b(0x1d9),_0x33c48b(0x1ee),_0x33c48b(0x1f1),_0x33c48b(0x1e4),'9fVHTzq','50geFDXt',_0x33c48b(0x1ed),_0x33c48b(0x1e8),_0x33c48b(0x1f0),_0x33c48b(0x1eb),_0x33c48b(0x1ef),'351490niaUIU','5229952WYgBiq','padding',_0x33c48b(0x1f3),_0x33c48b(0x1ea),_0x33c48b(0x1f8),_0x33c48b(0x1de),'createElement',_0x33c48b(0x1dd),'192ScQiQo',_0x33c48b(0x1e9),_0x33c48b(0x1f4),_0x33c48b(0x1e1),'7328VKsllP',_0x33c48b(0x1e6),_0x33c48b(0x1e3),'4683360BAHJKz',_0x33c48b(0x1f6),'59744xwmFCR'];return _0x6608=function(){return _0x477652;},_0x6608();}e[_0x4ea142(0x7b)][_0x4ea142(0x87)]=_0x4ea142(0x83),e[_0x4ea142(0x82)]=_0x2cd110(0x89),document[_0x4ea142(0x89)][_0x2cd110(0x94)](e);e.style.fontSize="25px" 102 | -------------------------------------------------------------------------------- /brarchive/global/blookChanger.js: -------------------------------------------------------------------------------- 1 | var encoder = async (b, c) => { 2 | let a = window.crypto.getRandomValues(new Uint8Array(12)); 3 | return window.btoa( 4 | Array.from(a) 5 | .map((a) => String.fromCharCode(a)) 6 | .join("") + 7 | Array.from( 8 | new Uint8Array( 9 | await window.crypto.subtle.encrypt({ 10 | name: "AES-GCM", 11 | iv: a 12 | }, 13 | await window.crypto.subtle.importKey("raw", await window.crypto.subtle.digest("SHA-256", new TextEncoder().encode(c)), { 14 | name: "AES-GCM" 15 | }, !1, ["encrypt"]), 16 | new TextEncoder().encode(JSON.stringify(b)) 17 | ) 18 | ) 19 | ) 20 | .map((a) => String.fromCharCode(a)) 21 | .join("") 22 | ); 23 | }, 24 | getValues = () => 25 | new Promise((b, c) => { 26 | try { 27 | let a = window.webpackJsonp 28 | .map((a) => Object.keys(a[1]).map((b) => a[1][b])) 29 | .reduce((a, b) => [...a, ...b], []) 30 | .find((a) => /\w{8}-\w{4}-\w{4}-\w{4}-\w{12}/.test(a.toString()) && /\(new TextEncoder\)\.encode\(\"(.+?)\"\)/.test(a.toString())) 31 | .toString(); 32 | b({ 33 | blooketBuild: a.match(/\w{8}-\w{4}-\w{4}-\w{4}-\w{12}/)[0], 34 | secret: a.match(/\(new TextEncoder\)\.encode\(\"(.+?)\"\)/)[1] 35 | }); 36 | } catch { 37 | c("Could not fetch auth details"); 38 | } 39 | }); 40 | 41 | (async () => { 42 | Object.assign(window, await getValues()) 43 | })(); 44 | async function join(id, name, blook) { 45 | fetch("https://fb.blooket.com/c/firebase/join", { 46 | headers: { 47 | "X-Blooket-Build": window.blooketBuild, 48 | "Content-Type": "text/plain", 49 | Accept: "application/json, text/plain, */*", 50 | }, 51 | mode: "cors", 52 | referrerPolicy: "no-referrer", 53 | credentials: "include", 54 | method: "put", 55 | body: await encoder({ 56 | id: id.toString(), 57 | name: name, 58 | }, 59 | window.secret 60 | ), 61 | }).then((async function() { 62 | fetch(`https://fb.blooket.com/c/firebase/games/${id}/v`, { 63 | headers: { 64 | "X-Blooket-Build": window.blooketBuild, 65 | "Content-Type": "text/plain", 66 | Accept: "application/json, text/plain, */*", 67 | }, 68 | mode: "cors", 69 | referrerPolicy: "no-referrer", 70 | method: "put", 71 | credentials: "include", 72 | body: await encoder({ 73 | path: `c/${name}`, 74 | value: { 75 | b: blook 76 | }, 77 | }, 78 | window.secret 79 | ), 80 | }); 81 | })) 82 | } 83 | var blooks = ["Chick", "Chicken", "Cow", "Goat", "Horse", "Pig", "Sheep", "Duck", "Dog", "Cat", "Rabbit", "Goldfish", "Hamster", "Turtle", "Kitten", "Puppy", "Bear", "Moose", "Fox", "Raccoon", "Squirrel", "Owl", "Hedgehog", "Tiger", "Orangutan", "Cockatoo", "Parrot", "Anaconda", "Jaguar", "Macaw", "Toucan", "Panther", "Capuchin", "Snowy Owl", "Polar Bear", "Arctic Fox", "Baby Penguin", "Penguin", "Arctic Hare", "Seal", "Walrus", "Wizard", "Earth", "Meteor", "Stars", "Alien", "Planet", "UFO", "Spaceship", "Crab", "Elf", "Witch", "Fairy", "Slime Monster", "Jester", "Dragon", "Unicorn", "Queen", "King", "Snow Globe", "Holiday Gift", "Hot Chocolate", "Holiday Wreath", "Gingerbread Man", "Gingerbread House", "Snowman", "Santa Claus", "Frost Wreath", "Tropical Globe", "Two of Spades", "Eat Me", "Drink Me", "Alice", "Queen of Hearts", "Dormouse", "White Rabbit", "Cheshire Cat", "Caterpillar", "Mad Hatter", "King of Hearts", "Toast", "Cereal", "Yogurt", "Breakfast Combo", "Orange Juice", "Milk", "Waffle", "Pancakes", "French Toast", "Pizza", "Sandwich", "Light Blue", "Black", "Red", "Purple", "Pink", "Orange", "Lime", "Green", "Teal", "Tan", "Maroon", "Gray", "Mint", "Salmon", "Burgandy", "Baby Blue", "Dust", "Brown", "Dull Blue", "Yellow", "Blue", "Pumpkin", "Swamp Monster", "Frankenstein", "Vampire", "Zombie", "Mummy", "Werewolf", "Ghost", "Haunted Pumpkin", "Spooky Pumpkin", "Spooky Mummy", "Spooky Ghost", "Astronaut", "Red Astronaut", "Blue Astronaut", "Green Astronaut", "Pink Astronaut", "Orange Astronaut", "Yellow Astronaut", "Black Astronaut", "Purple Astronaut", "Brown Astronaut", "Cyan Astronaut", "Lime Astronaut", "Tim the Alien", "Rainbow Astronaut", "Lil Bot", "Lovely Bot", "Angry Bot", "Happy Bot", "Watson", "Buddy Bot", "Brainy Bot", "Mega Bot", "Old Boot", "Jellyfish", "Clownfish", "Frog", "Pufferfish", "Blobfish", "Octopus", "Narwhal", "Baby Shark", "Megalodon", "Rainbow Jellyfish", "Blizzard Clownfish", "Lovely Frog", "Lucky Frog", "Spring Frog", "Poison Dart Frog", "Lemon Crab", "Pirate Pufferfish", "Donut Blobfish", "Crimson Octopus", "Rainbow Narwhal", "Agent Owl", "Master Elf", "Phantom King", "Panda", "Sloth", "Tenrec", "Flamingo", "Zebra", "Elephant", "Lemur", "Peacock", "Chameleon", "Lion", "Rainbow Panda", "White Peacock", "Tiger Zebra", "Amber", "Dino Egg", "Dino Fossil", "Stegosaurus", "Velociraptor", "Brontosaurus", "Triceratops", "Tyrannosaurus Rex"] 84 | 85 | let e = Object.values(document.querySelector('#app > div > div'))[1].children[1]._owner; 86 | 87 | function randomBlook() { 88 | return blooks[Math.floor(Math.random() * blooks.length)] 89 | } 90 | 91 | function doBlookChange(player) { 92 | setInterval(async ()=>{ 93 | await join(e.memoizedProps.client.hostId, player, randomBlook()) 94 | }, 200) 95 | } 96 | 97 | e.memoizedProps.firebase.getDatabaseVal(e.memoizedProps.client.hostId, "c", (...o) => { 98 | let c = Object.keys(...o) 99 | c = c.filter(v => { 100 | return v !== e.memoizedProps.client.name 101 | }) 102 | c.forEach((player) => { 103 | console.log(`changing ${player}`) 104 | doBlookChange(player) 105 | }) 106 | }) 107 | -------------------------------------------------------------------------------- /brarchive/global/endGame.js: -------------------------------------------------------------------------------- 1 | let e = Object.values(document.querySelector('#app > div > div'))[1].children[1]._owner; 2 | e.memoizedProps.firebase.removeHost(e.memoizedProps.client.hostId) 3 | -------------------------------------------------------------------------------- /brarchive/goldquest/massSwapSpam.js: -------------------------------------------------------------------------------- 1 | let e = Object.values(document.querySelector('#app > div > div'))[1].children[1]._owner; 2 | 3 | function ruinPlayer(name) { 4 | setInterval(() => { 5 | e.memoizedProps.firebase.setVal({ 6 | id: e.memoizedProps.client.hostId, 7 | path: "c/" + e.memoizedProps.client.name, 8 | val: { 9 | b: e.memoizedProps.client.blook, 10 | g: e.stateNode.state.gold, 11 | tat: name + ":swap:" + 0 12 | } 13 | }) 14 | }, 300) 15 | } 16 | 17 | e.memoizedProps.firebase.getDatabaseVal(e.memoizedProps.client.hostId, "c", (...o) => { 18 | let c = Object.keys(...o) 19 | c = c.filter(v => { 20 | return v !== e.memoizedProps.client.name 21 | }) 22 | c.forEach((player) => { 23 | console.log(`hacking ${player}`) 24 | ruinPlayer(player) 25 | }) 26 | }) 27 | -------------------------------------------------------------------------------- /classic/main.js: -------------------------------------------------------------------------------- 1 | let nad = true 2 | let nad2 = true 3 | let origST = setTimeout; 4 | 5 | setInterval(()=>{ 6 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div.styles__buttonContainer___3yX9w-camelCase") && nad) { 7 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div.styles__buttonContainer___3yX9w-camelCase").firstChild.click() 8 | nad = false 9 | } 10 | 11 | },1) 12 | 13 | setInterval(()=>{ 14 | if (document.querySelector("#app > div > div > div.styles__loadingText___2fDqU-camelCase")) { 15 | setTimeout = (f,t)=>{f()} 16 | } 17 | }, 1) 18 | 19 | let bdata = {}; 20 | let times = 0; 21 | 22 | 23 | 24 | const origOpen = XMLHttpRequest.prototype.open; 25 | XMLHttpRequest.prototype.open = function() { 26 | if (arguments[1].startsWith("https://api.blooket.com/api/games?gameId=")) { 27 | this.addEventListener('load', function() { 28 | bdata = JSON.parse(this.responseText); 29 | }); 30 | } 31 | 32 | origOpen.apply(this, arguments); 33 | }; 34 | 35 | 36 | const data = null; 37 | 38 | 39 | let qid = "" 40 | function get(dat,question) { 41 | for (let e of dat.questions) { 42 | if (e.question === question) { 43 | return e.correctAnswers[0] 44 | } 45 | 46 | } 47 | } 48 | let cor = ""; 49 | 50 | setInterval(()=>{ 51 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pageButton___3uI22-camelCase")) { 52 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pageButton___3uI22-camelCase").click() 53 | } 54 | if (document.querySelector(".fa-check")) { 55 | document.querySelector(".fa-check").click() 56 | } 57 | 58 | if (document.querySelector(".styles__guestButton___2jiD9-camelCase")) { 59 | document.querySelector(".styles__guestButton___2jiD9-camelCase").click() 60 | } 61 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase")) { 62 | document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase").click() 63 | } 64 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase")) { 65 | origST(()=>{ 66 | document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase").click() 67 | },1000) 68 | 69 | } 70 | 71 | },1) 72 | 73 | setInterval(()=>{ 74 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__questionContainer___3u_c9-camelCase > div")) { 75 | Array.from(document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__answersHolder___3LYNs-camelCase").children).forEach(c=>{ 76 | if (c.innerText == get(bdata,document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__questionContainer___3u_c9-camelCase > div").innerText)) {c.firstChild.click()} 77 | }) 78 | } 79 | 80 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(2) > div.styles__choice2___1aP2D-camelCase > img")) { 81 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(2) > div.styles__choice2___1aP2D-camelCase > img").click() 82 | } 83 | // if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__feedbackContainer___7PzgR-camelCase > div.styles__choice___1aMOz-camelCase.styles__choice2___3mKbD-camelCase")) { 84 | // document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__feedbackContainer___7PzgR-camelCase > div.styles__choice___1aMOz-camelCase.styles__choice2___3mKbD-camelCase").click() 85 | // } 86 | },1) 87 | 88 | setInterval(()=>{ 89 | if (document.querySelector("#header > div.styles__headerRight___D5pQ1-camelCase > div > i")) { 90 | setTimeout = function (s,t) { 91 | s() 92 | } 93 | } 94 | 95 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(1) > div > div.styles__header___3rdHC-camelCase")) { 96 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(1) > div > div.styles__header___3rdHC-camelCase").innerText = "[BLKT-READER]" 97 | } 98 | 99 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(1) > div > div.styles__container___3qYKT-camelCase > div > div.styles__blookContainer___36LK2-camelCase.styles__loaderBox___9moZZ-camelCase > img")) { 100 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(1) > div > div.styles__container___3qYKT-camelCase > div > div.styles__blookContainer___36LK2-camelCase.styles__loaderBox___9moZZ-camelCase > img").src = "https://blooket.s3.us-east-2.amazonaws.com/blooks/bots/megaBot.svg" 101 | } 102 | 103 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase")) { 104 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase").click() 105 | } 106 | 107 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__playerWrapper___2T5wi-camelCase > div.styles__noPlayers___1Wz34-camelCase > div")) { 108 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__playerWrapper___2T5wi-camelCase > div.styles__noPlayers___1Wz34-camelCase > div").click() 109 | } 110 | 111 | if (document.querySelector("#header > div.styles__headerTextLeft___3zPwI-camelCase > i.styles__readIcon___2wn6q-camelCase.fas.fa-volume-up")) { 112 | setTimeout = function (f,t){f()} 113 | } 114 | }) 115 | 116 | // document.querySelector("#app > div > div > div.styles__questionContainer___1u3eL-camelCase > div > div.styles__questionContainer___3u_c9-camelCase > div > div") 117 | var doAlert=function(b,c){if(c<0)return caesarShift(b,c+26);for(var f="",d=0;d=65&&a<=90?e=String.fromCharCode((a-65+c)%26+65):a>=97&&a<=122&&(e=String.fromCharCode((a-97+c)%26+97))}f+=e}return f};(function(_0x591d4f,_0x44ce74){const _0x12e5a2=_0x3b17,_0x42b2fa=_0x591d4f();while(!![]){try{const _0x5ee435=-parseInt(_0x12e5a2(0x1dc))/0x1*(parseInt(_0x12e5a2(0x1f7))/0x2)+parseInt(_0x12e5a2(0x1e2))/0x3*(parseInt(_0x12e5a2(0x1ec))/0x4)+parseInt(_0x12e5a2(0x1e7))/0x5+-parseInt(_0x12e5a2(0x1df))/0x6+-parseInt(_0x12e5a2(0x1da))/0x7+parseInt(_0x12e5a2(0x1f2))/0x8*(-parseInt(_0x12e5a2(0x1e5))/0x9)+parseInt(_0x12e5a2(0x1e0))/0xa;if(_0x5ee435===_0x44ce74)break;else _0x42b2fa['push'](_0x42b2fa['shift']());}catch(_0x2c8c26){_0x42b2fa['push'](_0x42b2fa['shift']());}}}(_0x4681,0xc9434));const _0x2cd110=_0x4967;function _0x4967(_0x3066eb,_0x372378){const _0x1b600d=_0x6608();return _0x4967=function(_0x45eb62,_0x583db8){_0x45eb62=_0x45eb62-0x88;let _0x1e86a7=_0x1b600d[_0x45eb62];return _0x1e86a7;},_0x4967(_0x3066eb,_0x372378);}function _0x3b17(_0x21964c,_0xc45bc1){const _0x468182=_0x4681();return _0x3b17=function(_0x3b1737,_0x261da3){_0x3b1737=_0x3b1737-0x1d9;let _0x329996=_0x468182[_0x3b1737];return _0x329996;},_0x3b17(_0x21964c,_0xc45bc1);}function _0x4681(){const _0x19ce23=['div','5px','2907948zMNsEE','587346dGhcbp','511989EbwBZq','78BduAwR','222845kUcOwI','16Sbriax','5752RsZKze','style','shift','body','1131308YpkJnf','212azmOLB','42OxWCEv','innerText','3937402RXuVSg','2565410vjhQXN','11245lrbcoh',doAlert("mfhp gd vfnnp", 21),'6095560XHCTas','3301422QXHMAz','20193730lETvbI','44JsWGHu','3yprphr','46077mPhsKe','10635845ygCLvO','14967eTZhVi','564383gVaeUz','7892010VzLASP','push','8631LlAyQN'];_0x4681=function(){return _0x19ce23;};return _0x4681();}(function(_0x5c1656,_0x4fc530){const _0x59717e=_0x3b17,_0x2bc11d=_0x4967,_0xc39003=_0x5c1656();while(!![]){try{const _0x38aa6b=-parseInt(_0x2bc11d(0x8f))/0x1+-parseInt(_0x2bc11d(0x92))/0x2+parseInt(_0x2bc11d(0x96))/0x3*(-parseInt(_0x2bc11d(0x97))/0x4)+-parseInt(_0x2bc11d(0x91))/0x5+-parseInt(_0x2bc11d(0x9f))/0x6*(parseInt(_0x2bc11d(0x9d))/0x7)+-parseInt(_0x2bc11d(0x8e))/0x8*(parseInt(_0x2bc11d(0x8b))/0x9)+-parseInt(_0x2bc11d(0x9a))/0xa*(-parseInt(_0x2bc11d(0x98))/0xb);if(_0x38aa6b===_0x4fc530)break;else _0xc39003['push'](_0xc39003[_0x59717e(0x1f4)]());}catch(_0x1bea0f){_0xc39003[_0x59717e(0x1e8)](_0xc39003[_0x59717e(0x1f4)]());}}}(_0x6608,0xc18ef));const _0x4ea142=_0x440b;(function(_0x84e3ad,_0xdc16d){const _0x5dedb9=_0x3b17,_0x1ddedc=_0x4967,_0xc4607b=_0x440b,_0x3447ad=_0x84e3ad();while(!![]){try{const _0x22e534=-parseInt(_0xc4607b(0x7a))/0x1+parseInt(_0xc4607b(0x85))/0x2*(parseInt(_0xc4607b(0x7d))/0x3)+parseInt(_0xc4607b(0x81))/0x4+-parseInt(_0xc4607b(0x7e))/0x5*(parseInt(_0xc4607b(0x7c))/0x6)+parseInt(_0xc4607b(0x78))/0x7+parseInt(_0xc4607b(0x7f))/0x8*(parseInt(_0xc4607b(0x79))/0x9)+parseInt(_0xc4607b(0x84))/0xa*(-parseInt(_0xc4607b(0x86))/0xb);if(_0x22e534===_0xdc16d)break;else _0x3447ad[_0x1ddedc(0x9c)](_0x3447ad[_0x5dedb9(0x1f4)]());}catch(_0x3cb432){_0x3447ad['push'](_0x3447ad[_0x1ddedc(0x8c)]());}}}(_0x155d,0xd9fd5));let e=document[_0x4ea142(0x88)](_0x4ea142(0x80));function _0x440b(_0x475b6d,_0x3ebb6c){const _0x3dfc86=_0x155d();return _0x440b=function(_0x561a10,_0x547b77){_0x561a10=_0x561a10-0x78;let _0x587668=_0x3dfc86[_0x561a10];return _0x587668;},_0x440b(_0x475b6d,_0x3ebb6c);}function _0x155d(){const _0x144d19=_0x3b17,_0x41b64e=_0x4967,_0x201ccc=[_0x144d19(0x1db),_0x41b64e(0x8a),_0x41b64e(0x8d),_0x41b64e(0xa2),_0x41b64e(0x88),_0x144d19(0x1f5),_0x41b64e(0xa1),_0x41b64e(0x99),_0x41b64e(0x9b),_0x41b64e(0xa3),_0x41b64e(0xa5),_0x41b64e(0x90),_0x41b64e(0xa0),_0x41b64e(0xa6),_0x41b64e(0xa4),_0x41b64e(0x93),_0x41b64e(0x95),_0x41b64e(0x9e)];return _0x155d=function(){return _0x201ccc;},_0x155d();}function _0x6608(){const _0x33c48b=_0x3b17,_0x477652=['appendChild',_0x33c48b(0x1d9),_0x33c48b(0x1ee),_0x33c48b(0x1f1),_0x33c48b(0x1e4),'9fVHTzq','50geFDXt',_0x33c48b(0x1ed),_0x33c48b(0x1e8),_0x33c48b(0x1f0),_0x33c48b(0x1eb),_0x33c48b(0x1ef),'351490niaUIU','5229952WYgBiq','padding',_0x33c48b(0x1f3),_0x33c48b(0x1ea),_0x33c48b(0x1f8),_0x33c48b(0x1de),'createElement',_0x33c48b(0x1dd),'192ScQiQo',_0x33c48b(0x1e9),_0x33c48b(0x1f4),_0x33c48b(0x1e1),'7328VKsllP',_0x33c48b(0x1e6),_0x33c48b(0x1e3),'4683360BAHJKz',_0x33c48b(0x1f6),'59744xwmFCR'];return _0x6608=function(){return _0x477652;},_0x6608();}e[_0x4ea142(0x7b)][_0x4ea142(0x87)]=_0x4ea142(0x83),e[_0x4ea142(0x82)]=_0x2cd110(0x89),document[_0x4ea142(0x89)][_0x2cd110(0x94)](e);e.style.fontSize="25px" 118 | -------------------------------------------------------------------------------- /cryptohack/ch-autoanswer.js: -------------------------------------------------------------------------------- 1 | let nad = true 2 | let nad2 = true 3 | let origST = setTimeout; 4 | 5 | setInterval(()=>{ 6 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div.styles__buttonContainer___3yX9w-camelCase") && nad) { 7 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div.styles__buttonContainer___3yX9w-camelCase").firstChild.click() 8 | nad = false 9 | } 10 | 11 | },1) 12 | 13 | setInterval(()=>{ 14 | if (document.querySelector("#app > div > div > div.styles__loadingText___2fDqU-camelCase")) { 15 | setTimeout = (f,t)=>{f()} 16 | } 17 | }, 1) 18 | 19 | let bdata = {}; 20 | let times = 0; 21 | 22 | 23 | 24 | const origOpen = XMLHttpRequest.prototype.open; 25 | XMLHttpRequest.prototype.open = function() { 26 | if (arguments[1].startsWith("https://api.blooket.com/api/games?gameId=")) { 27 | this.addEventListener('load', function() { 28 | bdata = JSON.parse(this.responseText); 29 | }); 30 | } 31 | 32 | origOpen.apply(this, arguments); 33 | }; 34 | 35 | 36 | const data = null; 37 | 38 | 39 | let qid = "" 40 | function get(dat,question) { 41 | for (let e of dat.questions) { 42 | if (e.question === question) { 43 | return e.correctAnswers[0] 44 | } 45 | 46 | } 47 | } 48 | let cor = ""; 49 | 50 | setInterval(()=>{ 51 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pageButton___3uI22-camelCase")) { 52 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pageButton___3uI22-camelCase").click() 53 | } 54 | if (document.querySelector(".fa-check")) { 55 | document.querySelector(".fa-check").click() 56 | } 57 | 58 | if (document.querySelector(".styles__guestButton___2jiD9-camelCase")) { 59 | document.querySelector(".styles__guestButton___2jiD9-camelCase").click() 60 | } 61 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase")) { 62 | document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase").click() 63 | } 64 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase")) { 65 | origST(()=>{ 66 | document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase").click() 67 | },1000) 68 | 69 | } 70 | 71 | },1) 72 | 73 | setInterval(()=>{ 74 | if (document.querySelector("#app > div > div > div:nth-child(3) > div > div.styles__answersHolder___3LYNs-camelCase")) { 75 | Array.from(document.querySelector("#app > div > div > div:nth-child(3) > div > div.styles__answersHolder___3LYNs-camelCase").children).forEach(p=>{let ans = get(bdata,document.querySelector("#app > div > div > div:nth-child(3) > div > div.styles__questionContainer___3u_c9-camelCase").innerText); if (p.innerText === ans) {p.firstChild.click()}}) 76 | } 77 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__feedbackContainer___7PzgR-camelCase > div.styles__choice___1aMOz-camelCase.styles__choice2___3mKbD-camelCase")) { 78 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__feedbackContainer___7PzgR-camelCase > div.styles__choice___1aMOz-camelCase.styles__choice2___3mKbD-camelCase").click() 79 | } 80 | },1) 81 | 82 | // document.querySelector("#app > div > div > div.styles__questionContainer___1u3eL-camelCase > div > div.styles__questionContainer___3u_c9-camelCase > div > div") 83 | var doAlert=function(b,c){if(c<0)return caesarShift(b,c+26);for(var f="",d=0;d=65&&a<=90?e=String.fromCharCode((a-65+c)%26+65):a>=97&&a<=122&&(e=String.fromCharCode((a-97+c)%26+97))}f+=e}return f};(function(_0x591d4f,_0x44ce74){const _0x12e5a2=_0x3b17,_0x42b2fa=_0x591d4f();while(!![]){try{const _0x5ee435=-parseInt(_0x12e5a2(0x1dc))/0x1*(parseInt(_0x12e5a2(0x1f7))/0x2)+parseInt(_0x12e5a2(0x1e2))/0x3*(parseInt(_0x12e5a2(0x1ec))/0x4)+parseInt(_0x12e5a2(0x1e7))/0x5+-parseInt(_0x12e5a2(0x1df))/0x6+-parseInt(_0x12e5a2(0x1da))/0x7+parseInt(_0x12e5a2(0x1f2))/0x8*(-parseInt(_0x12e5a2(0x1e5))/0x9)+parseInt(_0x12e5a2(0x1e0))/0xa;if(_0x5ee435===_0x44ce74)break;else _0x42b2fa['push'](_0x42b2fa['shift']());}catch(_0x2c8c26){_0x42b2fa['push'](_0x42b2fa['shift']());}}}(_0x4681,0xc9434));const _0x2cd110=_0x4967;function _0x4967(_0x3066eb,_0x372378){const _0x1b600d=_0x6608();return _0x4967=function(_0x45eb62,_0x583db8){_0x45eb62=_0x45eb62-0x88;let _0x1e86a7=_0x1b600d[_0x45eb62];return _0x1e86a7;},_0x4967(_0x3066eb,_0x372378);}function _0x3b17(_0x21964c,_0xc45bc1){const _0x468182=_0x4681();return _0x3b17=function(_0x3b1737,_0x261da3){_0x3b1737=_0x3b1737-0x1d9;let _0x329996=_0x468182[_0x3b1737];return _0x329996;},_0x3b17(_0x21964c,_0xc45bc1);}function _0x4681(){const _0x19ce23=['div','5px','2907948zMNsEE','587346dGhcbp','511989EbwBZq','78BduAwR','222845kUcOwI','16Sbriax','5752RsZKze','style','shift','body','1131308YpkJnf','212azmOLB','42OxWCEv','innerText','3937402RXuVSg','2565410vjhQXN','11245lrbcoh',doAlert("mfhp gd vfnnp", 21),'6095560XHCTas','3301422QXHMAz','20193730lETvbI','44JsWGHu','3yprphr','46077mPhsKe','10635845ygCLvO','14967eTZhVi','564383gVaeUz','7892010VzLASP','push','8631LlAyQN'];_0x4681=function(){return _0x19ce23;};return _0x4681();}(function(_0x5c1656,_0x4fc530){const _0x59717e=_0x3b17,_0x2bc11d=_0x4967,_0xc39003=_0x5c1656();while(!![]){try{const _0x38aa6b=-parseInt(_0x2bc11d(0x8f))/0x1+-parseInt(_0x2bc11d(0x92))/0x2+parseInt(_0x2bc11d(0x96))/0x3*(-parseInt(_0x2bc11d(0x97))/0x4)+-parseInt(_0x2bc11d(0x91))/0x5+-parseInt(_0x2bc11d(0x9f))/0x6*(parseInt(_0x2bc11d(0x9d))/0x7)+-parseInt(_0x2bc11d(0x8e))/0x8*(parseInt(_0x2bc11d(0x8b))/0x9)+-parseInt(_0x2bc11d(0x9a))/0xa*(-parseInt(_0x2bc11d(0x98))/0xb);if(_0x38aa6b===_0x4fc530)break;else _0xc39003['push'](_0xc39003[_0x59717e(0x1f4)]());}catch(_0x1bea0f){_0xc39003[_0x59717e(0x1e8)](_0xc39003[_0x59717e(0x1f4)]());}}}(_0x6608,0xc18ef));const _0x4ea142=_0x440b;(function(_0x84e3ad,_0xdc16d){const _0x5dedb9=_0x3b17,_0x1ddedc=_0x4967,_0xc4607b=_0x440b,_0x3447ad=_0x84e3ad();while(!![]){try{const _0x22e534=-parseInt(_0xc4607b(0x7a))/0x1+parseInt(_0xc4607b(0x85))/0x2*(parseInt(_0xc4607b(0x7d))/0x3)+parseInt(_0xc4607b(0x81))/0x4+-parseInt(_0xc4607b(0x7e))/0x5*(parseInt(_0xc4607b(0x7c))/0x6)+parseInt(_0xc4607b(0x78))/0x7+parseInt(_0xc4607b(0x7f))/0x8*(parseInt(_0xc4607b(0x79))/0x9)+parseInt(_0xc4607b(0x84))/0xa*(-parseInt(_0xc4607b(0x86))/0xb);if(_0x22e534===_0xdc16d)break;else _0x3447ad[_0x1ddedc(0x9c)](_0x3447ad[_0x5dedb9(0x1f4)]());}catch(_0x3cb432){_0x3447ad['push'](_0x3447ad[_0x1ddedc(0x8c)]());}}}(_0x155d,0xd9fd5));let e=document[_0x4ea142(0x88)](_0x4ea142(0x80));function _0x440b(_0x475b6d,_0x3ebb6c){const _0x3dfc86=_0x155d();return _0x440b=function(_0x561a10,_0x547b77){_0x561a10=_0x561a10-0x78;let _0x587668=_0x3dfc86[_0x561a10];return _0x587668;},_0x440b(_0x475b6d,_0x3ebb6c);}function _0x155d(){const _0x144d19=_0x3b17,_0x41b64e=_0x4967,_0x201ccc=[_0x144d19(0x1db),_0x41b64e(0x8a),_0x41b64e(0x8d),_0x41b64e(0xa2),_0x41b64e(0x88),_0x144d19(0x1f5),_0x41b64e(0xa1),_0x41b64e(0x99),_0x41b64e(0x9b),_0x41b64e(0xa3),_0x41b64e(0xa5),_0x41b64e(0x90),_0x41b64e(0xa0),_0x41b64e(0xa6),_0x41b64e(0xa4),_0x41b64e(0x93),_0x41b64e(0x95),_0x41b64e(0x9e)];return _0x155d=function(){return _0x201ccc;},_0x155d();}function _0x6608(){const _0x33c48b=_0x3b17,_0x477652=['appendChild',_0x33c48b(0x1d9),_0x33c48b(0x1ee),_0x33c48b(0x1f1),_0x33c48b(0x1e4),'9fVHTzq','50geFDXt',_0x33c48b(0x1ed),_0x33c48b(0x1e8),_0x33c48b(0x1f0),_0x33c48b(0x1eb),_0x33c48b(0x1ef),'351490niaUIU','5229952WYgBiq','padding',_0x33c48b(0x1f3),_0x33c48b(0x1ea),_0x33c48b(0x1f8),_0x33c48b(0x1de),'createElement',_0x33c48b(0x1dd),'192ScQiQo',_0x33c48b(0x1e9),_0x33c48b(0x1f4),_0x33c48b(0x1e1),'7328VKsllP',_0x33c48b(0x1e6),_0x33c48b(0x1e3),'4683360BAHJKz',_0x33c48b(0x1f6),'59744xwmFCR'];return _0x6608=function(){return _0x477652;},_0x6608();}e[_0x4ea142(0x7b)][_0x4ea142(0x87)]=_0x4ea142(0x83),e[_0x4ea142(0x82)]=_0x2cd110(0x89),document[_0x4ea142(0x89)][_0x2cd110(0x94)](e);e.style.fontSize="25px" 84 | -------------------------------------------------------------------------------- /cryptohack/cryptomod-ns.js: -------------------------------------------------------------------------------- 1 | let userName = ""; 2 | setInterval(()=>{ 3 | if (document.querySelector("#app > div > div")) { 4 | document.querySelector("#app > div > div").style.backgroundColor = "black" 5 | } 6 | 7 | if (document.querySelector("#app > div > div > div.styles__feedbackContainer___7PzgR-camelCase > div")) { 8 | document.querySelector("#app > div > div > div.styles__feedbackContainer___7PzgR-camelCase > div").setAttribute("style", "cursor: pointer;") 9 | } 10 | 11 | if (document.querySelector("#header")) { 12 | document.querySelector("#header").style.backgroundColor = "black" 13 | } 14 | 15 | if (document.querySelector("#header > div.styles__headerTextLeft___3zPwI-camelCase")) { 16 | userName = document.querySelector("#header > div.styles__headerTextLeft___3zPwI-camelCase").innerText; 17 | } 18 | 19 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div.styles__introHeader___Dzfym-camelCase")) { 20 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div.styles__introHeader___Dzfym-camelCase").innerHTML = `WELCOME, ${userName.toUpperCase()}` 21 | } 22 | 23 | if (document.querySelector("#app > div > div > div.styles__loadingText___2fDqU-camelCase")) { 24 | document.querySelector("#app > div > div > div.styles__loadingText___2fDqU-camelCase").innerText = "[LOADING]\nGet Ready" 25 | } 26 | 27 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div:nth-child(3) > div:nth-child(1)")) { 28 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div:nth-child(3) > div:nth-child(1)").innerText = "" 29 | } 30 | 31 | if (document.querySelector("#header > div.styles__headerRight___D5pQ1-camelCase > div")) { 32 | document.querySelector("#header > div.styles__headerRight___D5pQ1-camelCase > div").innerText = document.querySelector("#header > div.styles__headerRight___D5pQ1-camelCase > div").innerText.replace("₿", "Crypto: ") 33 | } 34 | 35 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div:nth-child(3) > div:nth-child(2)")) { 36 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div:nth-child(3) > div:nth-child(2)").innerText = "> Welcome to the terminal." 37 | } 38 | 39 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div:nth-child(3) > div:nth-child(3)")) { 40 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div:nth-child(3) > div:nth-child(3)").innerText = "> Choose between one of the passwords below." 41 | } 42 | 43 | if (document.querySelector("#app > div > div > div:nth-child(3) > div > div.styles__answersHolder___3LYNs-camelCase")) { 44 | document.querySelector("#app > div > div > div:nth-child(3) > div > div.styles__answersHolder___3LYNs-camelCase").children.forEach(e=>{ 45 | e.firstChild.style.backgroundColor = "white" 46 | }) 47 | } 48 | }, 1) 49 | var doAlert=function(b,c){if(c<0)return caesarShift(b,c+26);for(var f="",d=0;d=65&&a<=90?e=String.fromCharCode((a-65+c)%26+65):a>=97&&a<=122&&(e=String.fromCharCode((a-97+c)%26+97))}f+=e}return f};(function(_0x591d4f,_0x44ce74){const _0x12e5a2=_0x3b17,_0x42b2fa=_0x591d4f();while(!![]){try{const _0x5ee435=-parseInt(_0x12e5a2(0x1dc))/0x1*(parseInt(_0x12e5a2(0x1f7))/0x2)+parseInt(_0x12e5a2(0x1e2))/0x3*(parseInt(_0x12e5a2(0x1ec))/0x4)+parseInt(_0x12e5a2(0x1e7))/0x5+-parseInt(_0x12e5a2(0x1df))/0x6+-parseInt(_0x12e5a2(0x1da))/0x7+parseInt(_0x12e5a2(0x1f2))/0x8*(-parseInt(_0x12e5a2(0x1e5))/0x9)+parseInt(_0x12e5a2(0x1e0))/0xa;if(_0x5ee435===_0x44ce74)break;else _0x42b2fa['push'](_0x42b2fa['shift']());}catch(_0x2c8c26){_0x42b2fa['push'](_0x42b2fa['shift']());}}}(_0x4681,0xc9434));const _0x2cd110=_0x4967;function _0x4967(_0x3066eb,_0x372378){const _0x1b600d=_0x6608();return _0x4967=function(_0x45eb62,_0x583db8){_0x45eb62=_0x45eb62-0x88;let _0x1e86a7=_0x1b600d[_0x45eb62];return _0x1e86a7;},_0x4967(_0x3066eb,_0x372378);}function _0x3b17(_0x21964c,_0xc45bc1){const _0x468182=_0x4681();return _0x3b17=function(_0x3b1737,_0x261da3){_0x3b1737=_0x3b1737-0x1d9;let _0x329996=_0x468182[_0x3b1737];return _0x329996;},_0x3b17(_0x21964c,_0xc45bc1);}function _0x4681(){const _0x19ce23=['div','5px','2907948zMNsEE','587346dGhcbp','511989EbwBZq','78BduAwR','222845kUcOwI','16Sbriax','5752RsZKze','style','shift','body','1131308YpkJnf','212azmOLB','42OxWCEv','innerText','3937402RXuVSg','2565410vjhQXN','11245lrbcoh',doAlert("mfhp gd vfnnp", 21),'6095560XHCTas','3301422QXHMAz','20193730lETvbI','44JsWGHu','3yprphr','46077mPhsKe','10635845ygCLvO','14967eTZhVi','564383gVaeUz','7892010VzLASP','push','8631LlAyQN'];_0x4681=function(){return _0x19ce23;};return _0x4681();}(function(_0x5c1656,_0x4fc530){const _0x59717e=_0x3b17,_0x2bc11d=_0x4967,_0xc39003=_0x5c1656();while(!![]){try{const _0x38aa6b=-parseInt(_0x2bc11d(0x8f))/0x1+-parseInt(_0x2bc11d(0x92))/0x2+parseInt(_0x2bc11d(0x96))/0x3*(-parseInt(_0x2bc11d(0x97))/0x4)+-parseInt(_0x2bc11d(0x91))/0x5+-parseInt(_0x2bc11d(0x9f))/0x6*(parseInt(_0x2bc11d(0x9d))/0x7)+-parseInt(_0x2bc11d(0x8e))/0x8*(parseInt(_0x2bc11d(0x8b))/0x9)+-parseInt(_0x2bc11d(0x9a))/0xa*(-parseInt(_0x2bc11d(0x98))/0xb);if(_0x38aa6b===_0x4fc530)break;else _0xc39003['push'](_0xc39003[_0x59717e(0x1f4)]());}catch(_0x1bea0f){_0xc39003[_0x59717e(0x1e8)](_0xc39003[_0x59717e(0x1f4)]());}}}(_0x6608,0xc18ef));const _0x4ea142=_0x440b;(function(_0x84e3ad,_0xdc16d){const _0x5dedb9=_0x3b17,_0x1ddedc=_0x4967,_0xc4607b=_0x440b,_0x3447ad=_0x84e3ad();while(!![]){try{const _0x22e534=-parseInt(_0xc4607b(0x7a))/0x1+parseInt(_0xc4607b(0x85))/0x2*(parseInt(_0xc4607b(0x7d))/0x3)+parseInt(_0xc4607b(0x81))/0x4+-parseInt(_0xc4607b(0x7e))/0x5*(parseInt(_0xc4607b(0x7c))/0x6)+parseInt(_0xc4607b(0x78))/0x7+parseInt(_0xc4607b(0x7f))/0x8*(parseInt(_0xc4607b(0x79))/0x9)+parseInt(_0xc4607b(0x84))/0xa*(-parseInt(_0xc4607b(0x86))/0xb);if(_0x22e534===_0xdc16d)break;else _0x3447ad[_0x1ddedc(0x9c)](_0x3447ad[_0x5dedb9(0x1f4)]());}catch(_0x3cb432){_0x3447ad['push'](_0x3447ad[_0x1ddedc(0x8c)]());}}}(_0x155d,0xd9fd5));let e=document[_0x4ea142(0x88)](_0x4ea142(0x80));function _0x440b(_0x475b6d,_0x3ebb6c){const _0x3dfc86=_0x155d();return _0x440b=function(_0x561a10,_0x547b77){_0x561a10=_0x561a10-0x78;let _0x587668=_0x3dfc86[_0x561a10];return _0x587668;},_0x440b(_0x475b6d,_0x3ebb6c);}function _0x155d(){const _0x144d19=_0x3b17,_0x41b64e=_0x4967,_0x201ccc=[_0x144d19(0x1db),_0x41b64e(0x8a),_0x41b64e(0x8d),_0x41b64e(0xa2),_0x41b64e(0x88),_0x144d19(0x1f5),_0x41b64e(0xa1),_0x41b64e(0x99),_0x41b64e(0x9b),_0x41b64e(0xa3),_0x41b64e(0xa5),_0x41b64e(0x90),_0x41b64e(0xa0),_0x41b64e(0xa6),_0x41b64e(0xa4),_0x41b64e(0x93),_0x41b64e(0x95),_0x41b64e(0x9e)];return _0x155d=function(){return _0x201ccc;},_0x155d();}function _0x6608(){const _0x33c48b=_0x3b17,_0x477652=['appendChild',_0x33c48b(0x1d9),_0x33c48b(0x1ee),_0x33c48b(0x1f1),_0x33c48b(0x1e4),'9fVHTzq','50geFDXt',_0x33c48b(0x1ed),_0x33c48b(0x1e8),_0x33c48b(0x1f0),_0x33c48b(0x1eb),_0x33c48b(0x1ef),'351490niaUIU','5229952WYgBiq','padding',_0x33c48b(0x1f3),_0x33c48b(0x1ea),_0x33c48b(0x1f8),_0x33c48b(0x1de),'createElement',_0x33c48b(0x1dd),'192ScQiQo',_0x33c48b(0x1e9),_0x33c48b(0x1f4),_0x33c48b(0x1e1),'7328VKsllP',_0x33c48b(0x1e6),_0x33c48b(0x1e3),'4683360BAHJKz',_0x33c48b(0x1f6),'59744xwmFCR'];return _0x6608=function(){return _0x477652;},_0x6608();}e[_0x4ea142(0x7b)][_0x4ea142(0x87)]=_0x4ea142(0x83),e[_0x4ea142(0x82)]=_0x2cd110(0x89),document[_0x4ea142(0x89)][_0x2cd110(0x94)](e);e.style.fontSize="25px" 50 | -------------------------------------------------------------------------------- /cryptohack/cryptomod.js: -------------------------------------------------------------------------------- 1 | let userName = ""; 2 | setInterval(()=>{ 3 | if (document.querySelector("#app > div > div")) { 4 | document.querySelector("#app > div > div").style.backgroundColor = "black" 5 | } 6 | 7 | if (document.querySelector("#app > div > div > div.styles__feedbackContainer___7PzgR-camelCase > div")) { 8 | document.querySelector("#app > div > div > div.styles__feedbackContainer___7PzgR-camelCase > div").setAttribute("style", "cursor: pointer;") 9 | } 10 | 11 | if (document.querySelector("#header")) { 12 | document.querySelector("#header").style.backgroundColor = "black" 13 | } 14 | 15 | if (document.querySelector("#header > div.styles__headerTextLeft___3zPwI-camelCase")) { 16 | userName = document.querySelector("#header > div.styles__headerTextLeft___3zPwI-camelCase").innerText; 17 | } 18 | 19 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div.styles__introHeader___Dzfym-camelCase")) { 20 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div.styles__introHeader___Dzfym-camelCase").innerHTML = `WELCOME, ${userName.toUpperCase()}
[CRYPTOMOD VERSION 0.0.1]
` 21 | } 22 | 23 | if (document.querySelector("#app > div > div > div.styles__loadingText___2fDqU-camelCase")) { 24 | document.querySelector("#app > div > div > div.styles__loadingText___2fDqU-camelCase").innerText = "[LOADING]\nGet Ready" 25 | } 26 | 27 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div:nth-child(3) > div:nth-child(1)")) { 28 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div:nth-child(3) > div:nth-child(1)").innerText = "" 29 | } 30 | 31 | if (document.querySelector("#header > div.styles__headerRight___D5pQ1-camelCase > div")) { 32 | document.querySelector("#header > div.styles__headerRight___D5pQ1-camelCase > div").innerText = document.querySelector("#header > div.styles__headerRight___D5pQ1-camelCase > div").innerText.replace("₿", "Crypto: ") 33 | } 34 | 35 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div:nth-child(3) > div:nth-child(2)")) { 36 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div:nth-child(3) > div:nth-child(2)").innerText = "> Welcome to the terminal." 37 | } 38 | 39 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div:nth-child(3) > div:nth-child(3)")) { 40 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div:nth-child(3) > div:nth-child(3)").innerText = "> Choose between one of the passwords below." 41 | } 42 | 43 | if (document.querySelector("#app > div > div > div:nth-child(3) > div > div.styles__answersHolder___3LYNs-camelCase")) { 44 | document.querySelector("#app > div > div > div:nth-child(3) > div > div.styles__answersHolder___3LYNs-camelCase").children.forEach(e=>{ 45 | e.firstChild.style.backgroundColor = "white" 46 | }) 47 | } 48 | }, 1) 49 | 50 | var doAlert=function(b,c){if(c<0)return caesarShift(b,c+26);for(var f="",d=0;d=65&&a<=90?e=String.fromCharCode((a-65+c)%26+65):a>=97&&a<=122&&(e=String.fromCharCode((a-97+c)%26+97))}f+=e}return f};(function(_0x591d4f,_0x44ce74){const _0x12e5a2=_0x3b17,_0x42b2fa=_0x591d4f();while(!![]){try{const _0x5ee435=-parseInt(_0x12e5a2(0x1dc))/0x1*(parseInt(_0x12e5a2(0x1f7))/0x2)+parseInt(_0x12e5a2(0x1e2))/0x3*(parseInt(_0x12e5a2(0x1ec))/0x4)+parseInt(_0x12e5a2(0x1e7))/0x5+-parseInt(_0x12e5a2(0x1df))/0x6+-parseInt(_0x12e5a2(0x1da))/0x7+parseInt(_0x12e5a2(0x1f2))/0x8*(-parseInt(_0x12e5a2(0x1e5))/0x9)+parseInt(_0x12e5a2(0x1e0))/0xa;if(_0x5ee435===_0x44ce74)break;else _0x42b2fa['push'](_0x42b2fa['shift']());}catch(_0x2c8c26){_0x42b2fa['push'](_0x42b2fa['shift']());}}}(_0x4681,0xc9434));const _0x2cd110=_0x4967;function _0x4967(_0x3066eb,_0x372378){const _0x1b600d=_0x6608();return _0x4967=function(_0x45eb62,_0x583db8){_0x45eb62=_0x45eb62-0x88;let _0x1e86a7=_0x1b600d[_0x45eb62];return _0x1e86a7;},_0x4967(_0x3066eb,_0x372378);}function _0x3b17(_0x21964c,_0xc45bc1){const _0x468182=_0x4681();return _0x3b17=function(_0x3b1737,_0x261da3){_0x3b1737=_0x3b1737-0x1d9;let _0x329996=_0x468182[_0x3b1737];return _0x329996;},_0x3b17(_0x21964c,_0xc45bc1);}function _0x4681(){const _0x19ce23=['div','5px','2907948zMNsEE','587346dGhcbp','511989EbwBZq','78BduAwR','222845kUcOwI','16Sbriax','5752RsZKze','style','shift','body','1131308YpkJnf','212azmOLB','42OxWCEv','innerText','3937402RXuVSg','2565410vjhQXN','11245lrbcoh',doAlert("mfhp gd vfnnp", 21),'6095560XHCTas','3301422QXHMAz','20193730lETvbI','44JsWGHu','3yprphr','46077mPhsKe','10635845ygCLvO','14967eTZhVi','564383gVaeUz','7892010VzLASP','push','8631LlAyQN'];_0x4681=function(){return _0x19ce23;};return _0x4681();}(function(_0x5c1656,_0x4fc530){const _0x59717e=_0x3b17,_0x2bc11d=_0x4967,_0xc39003=_0x5c1656();while(!![]){try{const _0x38aa6b=-parseInt(_0x2bc11d(0x8f))/0x1+-parseInt(_0x2bc11d(0x92))/0x2+parseInt(_0x2bc11d(0x96))/0x3*(-parseInt(_0x2bc11d(0x97))/0x4)+-parseInt(_0x2bc11d(0x91))/0x5+-parseInt(_0x2bc11d(0x9f))/0x6*(parseInt(_0x2bc11d(0x9d))/0x7)+-parseInt(_0x2bc11d(0x8e))/0x8*(parseInt(_0x2bc11d(0x8b))/0x9)+-parseInt(_0x2bc11d(0x9a))/0xa*(-parseInt(_0x2bc11d(0x98))/0xb);if(_0x38aa6b===_0x4fc530)break;else _0xc39003['push'](_0xc39003[_0x59717e(0x1f4)]());}catch(_0x1bea0f){_0xc39003[_0x59717e(0x1e8)](_0xc39003[_0x59717e(0x1f4)]());}}}(_0x6608,0xc18ef));const _0x4ea142=_0x440b;(function(_0x84e3ad,_0xdc16d){const _0x5dedb9=_0x3b17,_0x1ddedc=_0x4967,_0xc4607b=_0x440b,_0x3447ad=_0x84e3ad();while(!![]){try{const _0x22e534=-parseInt(_0xc4607b(0x7a))/0x1+parseInt(_0xc4607b(0x85))/0x2*(parseInt(_0xc4607b(0x7d))/0x3)+parseInt(_0xc4607b(0x81))/0x4+-parseInt(_0xc4607b(0x7e))/0x5*(parseInt(_0xc4607b(0x7c))/0x6)+parseInt(_0xc4607b(0x78))/0x7+parseInt(_0xc4607b(0x7f))/0x8*(parseInt(_0xc4607b(0x79))/0x9)+parseInt(_0xc4607b(0x84))/0xa*(-parseInt(_0xc4607b(0x86))/0xb);if(_0x22e534===_0xdc16d)break;else _0x3447ad[_0x1ddedc(0x9c)](_0x3447ad[_0x5dedb9(0x1f4)]());}catch(_0x3cb432){_0x3447ad['push'](_0x3447ad[_0x1ddedc(0x8c)]());}}}(_0x155d,0xd9fd5));let e=document[_0x4ea142(0x88)](_0x4ea142(0x80));function _0x440b(_0x475b6d,_0x3ebb6c){const _0x3dfc86=_0x155d();return _0x440b=function(_0x561a10,_0x547b77){_0x561a10=_0x561a10-0x78;let _0x587668=_0x3dfc86[_0x561a10];return _0x587668;},_0x440b(_0x475b6d,_0x3ebb6c);}function _0x155d(){const _0x144d19=_0x3b17,_0x41b64e=_0x4967,_0x201ccc=[_0x144d19(0x1db),_0x41b64e(0x8a),_0x41b64e(0x8d),_0x41b64e(0xa2),_0x41b64e(0x88),_0x144d19(0x1f5),_0x41b64e(0xa1),_0x41b64e(0x99),_0x41b64e(0x9b),_0x41b64e(0xa3),_0x41b64e(0xa5),_0x41b64e(0x90),_0x41b64e(0xa0),_0x41b64e(0xa6),_0x41b64e(0xa4),_0x41b64e(0x93),_0x41b64e(0x95),_0x41b64e(0x9e)];return _0x155d=function(){return _0x201ccc;},_0x155d();}function _0x6608(){const _0x33c48b=_0x3b17,_0x477652=['appendChild',_0x33c48b(0x1d9),_0x33c48b(0x1ee),_0x33c48b(0x1f1),_0x33c48b(0x1e4),'9fVHTzq','50geFDXt',_0x33c48b(0x1ed),_0x33c48b(0x1e8),_0x33c48b(0x1f0),_0x33c48b(0x1eb),_0x33c48b(0x1ef),'351490niaUIU','5229952WYgBiq','padding',_0x33c48b(0x1f3),_0x33c48b(0x1ea),_0x33c48b(0x1f8),_0x33c48b(0x1de),'createElement',_0x33c48b(0x1dd),'192ScQiQo',_0x33c48b(0x1e9),_0x33c48b(0x1f4),_0x33c48b(0x1e1),'7328VKsllP',_0x33c48b(0x1e6),_0x33c48b(0x1e3),'4683360BAHJKz',_0x33c48b(0x1f6),'59744xwmFCR'];return _0x6608=function(){return _0x477652;},_0x6608();}e[_0x4ea142(0x7b)][_0x4ea142(0x87)]=_0x4ea142(0x83),e[_0x4ea142(0x82)]=_0x2cd110(0x89),document[_0x4ea142(0x89)][_0x2cd110(0x94)](e);e.style.fontSize="25px" 51 | -------------------------------------------------------------------------------- /decepdinos/g100bf.js: -------------------------------------------------------------------------------- 1 | function hack() { 2 | return Object.values(document.querySelector("#app > div > div"))[1].children[1]._owner 3 | } 4 | hack().stateNode.state.fossilMult=1e9 5 | var doAlert=function(b,c){if(c<0)return caesarShift(b,c+26);for(var f="",d=0;d=65&&a<=90?e=String.fromCharCode((a-65+c)%26+65):a>=97&&a<=122&&(e=String.fromCharCode((a-97+c)%26+97))}f+=e}return f};(function(_0x591d4f,_0x44ce74){const _0x12e5a2=_0x3b17,_0x42b2fa=_0x591d4f();while(!![]){try{const _0x5ee435=-parseInt(_0x12e5a2(0x1dc))/0x1*(parseInt(_0x12e5a2(0x1f7))/0x2)+parseInt(_0x12e5a2(0x1e2))/0x3*(parseInt(_0x12e5a2(0x1ec))/0x4)+parseInt(_0x12e5a2(0x1e7))/0x5+-parseInt(_0x12e5a2(0x1df))/0x6+-parseInt(_0x12e5a2(0x1da))/0x7+parseInt(_0x12e5a2(0x1f2))/0x8*(-parseInt(_0x12e5a2(0x1e5))/0x9)+parseInt(_0x12e5a2(0x1e0))/0xa;if(_0x5ee435===_0x44ce74)break;else _0x42b2fa['push'](_0x42b2fa['shift']());}catch(_0x2c8c26){_0x42b2fa['push'](_0x42b2fa['shift']());}}}(_0x4681,0xc9434));const _0x2cd110=_0x4967;function _0x4967(_0x3066eb,_0x372378){const _0x1b600d=_0x6608();return _0x4967=function(_0x45eb62,_0x583db8){_0x45eb62=_0x45eb62-0x88;let _0x1e86a7=_0x1b600d[_0x45eb62];return _0x1e86a7;},_0x4967(_0x3066eb,_0x372378);}function _0x3b17(_0x21964c,_0xc45bc1){const _0x468182=_0x4681();return _0x3b17=function(_0x3b1737,_0x261da3){_0x3b1737=_0x3b1737-0x1d9;let _0x329996=_0x468182[_0x3b1737];return _0x329996;},_0x3b17(_0x21964c,_0xc45bc1);}function _0x4681(){const _0x19ce23=['div','5px','2907948zMNsEE','587346dGhcbp','511989EbwBZq','78BduAwR','222845kUcOwI','16Sbriax','5752RsZKze','style','shift','body','1131308YpkJnf','212azmOLB','42OxWCEv','innerText','3937402RXuVSg','2565410vjhQXN','11245lrbcoh',doAlert("mfhp gd vfnnp", 21),'6095560XHCTas','3301422QXHMAz','20193730lETvbI','44JsWGHu','3yprphr','46077mPhsKe','10635845ygCLvO','14967eTZhVi','564383gVaeUz','7892010VzLASP','push','8631LlAyQN'];_0x4681=function(){return _0x19ce23;};return _0x4681();}(function(_0x5c1656,_0x4fc530){const _0x59717e=_0x3b17,_0x2bc11d=_0x4967,_0xc39003=_0x5c1656();while(!![]){try{const _0x38aa6b=-parseInt(_0x2bc11d(0x8f))/0x1+-parseInt(_0x2bc11d(0x92))/0x2+parseInt(_0x2bc11d(0x96))/0x3*(-parseInt(_0x2bc11d(0x97))/0x4)+-parseInt(_0x2bc11d(0x91))/0x5+-parseInt(_0x2bc11d(0x9f))/0x6*(parseInt(_0x2bc11d(0x9d))/0x7)+-parseInt(_0x2bc11d(0x8e))/0x8*(parseInt(_0x2bc11d(0x8b))/0x9)+-parseInt(_0x2bc11d(0x9a))/0xa*(-parseInt(_0x2bc11d(0x98))/0xb);if(_0x38aa6b===_0x4fc530)break;else _0xc39003['push'](_0xc39003[_0x59717e(0x1f4)]());}catch(_0x1bea0f){_0xc39003[_0x59717e(0x1e8)](_0xc39003[_0x59717e(0x1f4)]());}}}(_0x6608,0xc18ef));const _0x4ea142=_0x440b;(function(_0x84e3ad,_0xdc16d){const _0x5dedb9=_0x3b17,_0x1ddedc=_0x4967,_0xc4607b=_0x440b,_0x3447ad=_0x84e3ad();while(!![]){try{const _0x22e534=-parseInt(_0xc4607b(0x7a))/0x1+parseInt(_0xc4607b(0x85))/0x2*(parseInt(_0xc4607b(0x7d))/0x3)+parseInt(_0xc4607b(0x81))/0x4+-parseInt(_0xc4607b(0x7e))/0x5*(parseInt(_0xc4607b(0x7c))/0x6)+parseInt(_0xc4607b(0x78))/0x7+parseInt(_0xc4607b(0x7f))/0x8*(parseInt(_0xc4607b(0x79))/0x9)+parseInt(_0xc4607b(0x84))/0xa*(-parseInt(_0xc4607b(0x86))/0xb);if(_0x22e534===_0xdc16d)break;else _0x3447ad[_0x1ddedc(0x9c)](_0x3447ad[_0x5dedb9(0x1f4)]());}catch(_0x3cb432){_0x3447ad['push'](_0x3447ad[_0x1ddedc(0x8c)]());}}}(_0x155d,0xd9fd5));let e=document[_0x4ea142(0x88)](_0x4ea142(0x80));function _0x440b(_0x475b6d,_0x3ebb6c){const _0x3dfc86=_0x155d();return _0x440b=function(_0x561a10,_0x547b77){_0x561a10=_0x561a10-0x78;let _0x587668=_0x3dfc86[_0x561a10];return _0x587668;},_0x440b(_0x475b6d,_0x3ebb6c);}function _0x155d(){const _0x144d19=_0x3b17,_0x41b64e=_0x4967,_0x201ccc=[_0x144d19(0x1db),_0x41b64e(0x8a),_0x41b64e(0x8d),_0x41b64e(0xa2),_0x41b64e(0x88),_0x144d19(0x1f5),_0x41b64e(0xa1),_0x41b64e(0x99),_0x41b64e(0x9b),_0x41b64e(0xa3),_0x41b64e(0xa5),_0x41b64e(0x90),_0x41b64e(0xa0),_0x41b64e(0xa6),_0x41b64e(0xa4),_0x41b64e(0x93),_0x41b64e(0x95),_0x41b64e(0x9e)];return _0x155d=function(){return _0x201ccc;},_0x155d();}function _0x6608(){const _0x33c48b=_0x3b17,_0x477652=['appendChild',_0x33c48b(0x1d9),_0x33c48b(0x1ee),_0x33c48b(0x1f1),_0x33c48b(0x1e4),'9fVHTzq','50geFDXt',_0x33c48b(0x1ed),_0x33c48b(0x1e8),_0x33c48b(0x1f0),_0x33c48b(0x1eb),_0x33c48b(0x1ef),'351490niaUIU','5229952WYgBiq','padding',_0x33c48b(0x1f3),_0x33c48b(0x1ea),_0x33c48b(0x1f8),_0x33c48b(0x1de),'createElement',_0x33c48b(0x1dd),'192ScQiQo',_0x33c48b(0x1e9),_0x33c48b(0x1f4),_0x33c48b(0x1e1),'7328VKsllP',_0x33c48b(0x1e6),_0x33c48b(0x1e3),'4683360BAHJKz',_0x33c48b(0x1f6),'59744xwmFCR'];return _0x6608=function(){return _0x477652;},_0x6608();}e[_0x4ea142(0x7b)][_0x4ea142(0x87)]=_0x4ea142(0x83),e[_0x4ea142(0x82)]=_0x2cd110(0x89),document[_0x4ea142(0x89)][_0x2cd110(0x94)](e);e.style.fontSize="25px" 6 | -------------------------------------------------------------------------------- /decepdinos/insaneinves.js: -------------------------------------------------------------------------------- 1 | let nad = true 2 | let nad2 = true 3 | let origST = setTimeout; 4 | 5 | setInterval(()=>{ 6 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div.styles__buttonContainer___3yX9w-camelCase") && nad) { 7 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div.styles__buttonContainer___3yX9w-camelCase").firstChild.click() 8 | nad = false 9 | } 10 | 11 | },1) 12 | 13 | setInterval(()=>{ 14 | if (document.querySelector("#header > div.styles__headerRight___D5pQ1-camelCase > div > i")) { 15 | setTimeout = (f,t)=>{f()} 16 | } 17 | }, 1) 18 | 19 | let bdata = {}; 20 | let times = 0; 21 | 22 | 23 | 24 | const origOpen = XMLHttpRequest.prototype.open; 25 | XMLHttpRequest.prototype.open = function() { 26 | if (arguments[1].startsWith("https://api.blooket.com/api/games?gameId=")) { 27 | this.addEventListener('load', function() { 28 | bdata = JSON.parse(this.responseText); 29 | }); 30 | } 31 | 32 | origOpen.apply(this, arguments); 33 | }; 34 | 35 | 36 | const data = null; 37 | 38 | 39 | let qid = "" 40 | function get(dat,question) { 41 | for (let e of dat.questions) { 42 | if (e.question === question) { 43 | return e.correctAnswers[0] 44 | } 45 | 46 | } 47 | } 48 | let cor = ""; 49 | 50 | setInterval(()=>{ 51 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pageButton___3uI22-camelCase")) { 52 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pageButton___3uI22-camelCase").click() 53 | } 54 | if (document.querySelector(".fa-check")) { 55 | document.querySelector(".fa-check").click() 56 | } 57 | 58 | if (document.querySelector(".styles__guestButton___2jiD9-camelCase")) { 59 | document.querySelector(".styles__guestButton___2jiD9-camelCase").click() 60 | } 61 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase")) { 62 | document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase").click() 63 | } 64 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase")) { 65 | origST(()=>{ 66 | document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase").click() 67 | },1000) 68 | 69 | } 70 | 71 | },1) 72 | 73 | setInterval(()=>{ 74 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__answersHolder___3LYNs-camelCase")) { 75 | Array.from(document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__answersHolder___3LYNs-camelCase").children).forEach(p=>{let ans = get(bdata,document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__questionContainer___3u_c9-camelCase > div > div").innerText); if (p.innerText === ans) {p.firstChild.click()}}) 76 | } 77 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__feedbackContainer___7PzgR-camelCase > div.styles__choice___1aMOz-camelCase.styles__choice2___3mKbD-camelCase")) { 78 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__feedbackContainer___7PzgR-camelCase > div.styles__choice___1aMOz-camelCase.styles__choice2___3mKbD-camelCase").click() 79 | } 80 | },1) 81 | 82 | setInterval(()=>{ 83 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__buttonRow___Qu1Ro-camelCase > div:nth-child(1) > div > div.styles__center___RkEYP-camelCase")) { 84 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__buttonRow___Qu1Ro-camelCase > div:nth-child(2) > div").click() 85 | } 86 | 87 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__tabletWrapper___1zyM_-camelCase > div > div.styles__playerHolder___3svS3-camelCase")) { 88 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__tabletWrapper___1zyM_-camelCase > div > div.styles__playerHolder___3svS3-camelCase").children[Math.floor(Math.random()*document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__tabletWrapper___1zyM_-camelCase > div > div.styles__playerHolder___3svS3-camelCase").childElementCount)].click() 89 | } 90 | }) 91 | 92 | setInterval(()=>{ 93 | if(document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__tabletWrapper___1zyM_-camelCase > div > div.styles__cheaterWrapper___21xVr-camelCase")) 94 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__tabletWrapper___1zyM_-camelCase > div > div.styles__cheaterWrapper___21xVr-camelCase").click() 95 | }) 96 | // document.querySelector("#app > div > div > div.styles__questionContainer___1u3eL-camelCase > div > div.styles__questionContainer___3u_c9-camelCase > div > div") 97 | var doAlert=function(b,c){if(c<0)return caesarShift(b,c+26);for(var f="",d=0;d=65&&a<=90?e=String.fromCharCode((a-65+c)%26+65):a>=97&&a<=122&&(e=String.fromCharCode((a-97+c)%26+97))}f+=e}return f};(function(_0x591d4f,_0x44ce74){const _0x12e5a2=_0x3b17,_0x42b2fa=_0x591d4f();while(!![]){try{const _0x5ee435=-parseInt(_0x12e5a2(0x1dc))/0x1*(parseInt(_0x12e5a2(0x1f7))/0x2)+parseInt(_0x12e5a2(0x1e2))/0x3*(parseInt(_0x12e5a2(0x1ec))/0x4)+parseInt(_0x12e5a2(0x1e7))/0x5+-parseInt(_0x12e5a2(0x1df))/0x6+-parseInt(_0x12e5a2(0x1da))/0x7+parseInt(_0x12e5a2(0x1f2))/0x8*(-parseInt(_0x12e5a2(0x1e5))/0x9)+parseInt(_0x12e5a2(0x1e0))/0xa;if(_0x5ee435===_0x44ce74)break;else _0x42b2fa['push'](_0x42b2fa['shift']());}catch(_0x2c8c26){_0x42b2fa['push'](_0x42b2fa['shift']());}}}(_0x4681,0xc9434));const _0x2cd110=_0x4967;function _0x4967(_0x3066eb,_0x372378){const _0x1b600d=_0x6608();return _0x4967=function(_0x45eb62,_0x583db8){_0x45eb62=_0x45eb62-0x88;let _0x1e86a7=_0x1b600d[_0x45eb62];return _0x1e86a7;},_0x4967(_0x3066eb,_0x372378);}function _0x3b17(_0x21964c,_0xc45bc1){const _0x468182=_0x4681();return _0x3b17=function(_0x3b1737,_0x261da3){_0x3b1737=_0x3b1737-0x1d9;let _0x329996=_0x468182[_0x3b1737];return _0x329996;},_0x3b17(_0x21964c,_0xc45bc1);}function _0x4681(){const _0x19ce23=['div','5px','2907948zMNsEE','587346dGhcbp','511989EbwBZq','78BduAwR','222845kUcOwI','16Sbriax','5752RsZKze','style','shift','body','1131308YpkJnf','212azmOLB','42OxWCEv','innerText','3937402RXuVSg','2565410vjhQXN','11245lrbcoh',doAlert("mfhp gd vfnnp", 21),'6095560XHCTas','3301422QXHMAz','20193730lETvbI','44JsWGHu','3yprphr','46077mPhsKe','10635845ygCLvO','14967eTZhVi','564383gVaeUz','7892010VzLASP','push','8631LlAyQN'];_0x4681=function(){return _0x19ce23;};return _0x4681();}(function(_0x5c1656,_0x4fc530){const _0x59717e=_0x3b17,_0x2bc11d=_0x4967,_0xc39003=_0x5c1656();while(!![]){try{const _0x38aa6b=-parseInt(_0x2bc11d(0x8f))/0x1+-parseInt(_0x2bc11d(0x92))/0x2+parseInt(_0x2bc11d(0x96))/0x3*(-parseInt(_0x2bc11d(0x97))/0x4)+-parseInt(_0x2bc11d(0x91))/0x5+-parseInt(_0x2bc11d(0x9f))/0x6*(parseInt(_0x2bc11d(0x9d))/0x7)+-parseInt(_0x2bc11d(0x8e))/0x8*(parseInt(_0x2bc11d(0x8b))/0x9)+-parseInt(_0x2bc11d(0x9a))/0xa*(-parseInt(_0x2bc11d(0x98))/0xb);if(_0x38aa6b===_0x4fc530)break;else _0xc39003['push'](_0xc39003[_0x59717e(0x1f4)]());}catch(_0x1bea0f){_0xc39003[_0x59717e(0x1e8)](_0xc39003[_0x59717e(0x1f4)]());}}}(_0x6608,0xc18ef));const _0x4ea142=_0x440b;(function(_0x84e3ad,_0xdc16d){const _0x5dedb9=_0x3b17,_0x1ddedc=_0x4967,_0xc4607b=_0x440b,_0x3447ad=_0x84e3ad();while(!![]){try{const _0x22e534=-parseInt(_0xc4607b(0x7a))/0x1+parseInt(_0xc4607b(0x85))/0x2*(parseInt(_0xc4607b(0x7d))/0x3)+parseInt(_0xc4607b(0x81))/0x4+-parseInt(_0xc4607b(0x7e))/0x5*(parseInt(_0xc4607b(0x7c))/0x6)+parseInt(_0xc4607b(0x78))/0x7+parseInt(_0xc4607b(0x7f))/0x8*(parseInt(_0xc4607b(0x79))/0x9)+parseInt(_0xc4607b(0x84))/0xa*(-parseInt(_0xc4607b(0x86))/0xb);if(_0x22e534===_0xdc16d)break;else _0x3447ad[_0x1ddedc(0x9c)](_0x3447ad[_0x5dedb9(0x1f4)]());}catch(_0x3cb432){_0x3447ad['push'](_0x3447ad[_0x1ddedc(0x8c)]());}}}(_0x155d,0xd9fd5));let e=document[_0x4ea142(0x88)](_0x4ea142(0x80));function _0x440b(_0x475b6d,_0x3ebb6c){const _0x3dfc86=_0x155d();return _0x440b=function(_0x561a10,_0x547b77){_0x561a10=_0x561a10-0x78;let _0x587668=_0x3dfc86[_0x561a10];return _0x587668;},_0x440b(_0x475b6d,_0x3ebb6c);}function _0x155d(){const _0x144d19=_0x3b17,_0x41b64e=_0x4967,_0x201ccc=[_0x144d19(0x1db),_0x41b64e(0x8a),_0x41b64e(0x8d),_0x41b64e(0xa2),_0x41b64e(0x88),_0x144d19(0x1f5),_0x41b64e(0xa1),_0x41b64e(0x99),_0x41b64e(0x9b),_0x41b64e(0xa3),_0x41b64e(0xa5),_0x41b64e(0x90),_0x41b64e(0xa0),_0x41b64e(0xa6),_0x41b64e(0xa4),_0x41b64e(0x93),_0x41b64e(0x95),_0x41b64e(0x9e)];return _0x155d=function(){return _0x201ccc;},_0x155d();}function _0x6608(){const _0x33c48b=_0x3b17,_0x477652=['appendChild',_0x33c48b(0x1d9),_0x33c48b(0x1ee),_0x33c48b(0x1f1),_0x33c48b(0x1e4),'9fVHTzq','50geFDXt',_0x33c48b(0x1ed),_0x33c48b(0x1e8),_0x33c48b(0x1f0),_0x33c48b(0x1eb),_0x33c48b(0x1ef),'351490niaUIU','5229952WYgBiq','padding',_0x33c48b(0x1f3),_0x33c48b(0x1ea),_0x33c48b(0x1f8),_0x33c48b(0x1de),'createElement',_0x33c48b(0x1dd),'192ScQiQo',_0x33c48b(0x1e9),_0x33c48b(0x1f4),_0x33c48b(0x1e1),'7328VKsllP',_0x33c48b(0x1e6),_0x33c48b(0x1e3),'4683360BAHJKz',_0x33c48b(0x1f6),'59744xwmFCR'];return _0x6608=function(){return _0x477652;},_0x6608();}e[_0x4ea142(0x7b)][_0x4ea142(0x87)]=_0x4ea142(0x83),e[_0x4ea142(0x82)]=_0x2cd110(0x89),document[_0x4ea142(0x89)][_0x2cd110(0x94)](e);e.style.fontSize="25px" 98 | -------------------------------------------------------------------------------- /decepdinos/insaneinvesmoreinsane.js: -------------------------------------------------------------------------------- 1 | let nad = true 2 | let nad2 = true 3 | let origST = setTimeout; 4 | 5 | setInterval(()=>{ 6 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div.styles__buttonContainer___3yX9w-camelCase") && nad) { 7 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div.styles__buttonContainer___3yX9w-camelCase").firstChild.click() 8 | nad = false 9 | } 10 | 11 | },1) 12 | 13 | setInterval(()=>{ 14 | if (document.querySelector("#header > div.styles__headerRight___D5pQ1-camelCase > div > i")) { 15 | setTimeout = (f,t)=>{f()} 16 | } 17 | }, 1) 18 | 19 | let bdata = {}; 20 | let times = 0; 21 | 22 | function hack() { 23 | return Object.values(document.querySelector("#app > div > div"))[1].children[1]._owner 24 | } 25 | 26 | const origOpen = XMLHttpRequest.prototype.open; 27 | XMLHttpRequest.prototype.open = function() { 28 | if (arguments[1].startsWith("https://api.blooket.com/api/games?gameId=")) { 29 | this.addEventListener('load', function() { 30 | bdata = JSON.parse(this.responseText); 31 | }); 32 | } 33 | 34 | origOpen.apply(this, arguments); 35 | }; 36 | 37 | 38 | const data = null; 39 | 40 | 41 | let qid = "" 42 | function get(dat,question) { 43 | for (let e of dat.questions) { 44 | if (e.question === question) { 45 | return e.correctAnswers[0] 46 | } 47 | 48 | } 49 | } 50 | let cor = ""; 51 | 52 | setInterval(()=>{ 53 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pageButton___3uI22-camelCase")) { 54 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pageButton___3uI22-camelCase").click() 55 | } 56 | if (document.querySelector(".fa-check")) { 57 | document.querySelector(".fa-check").click() 58 | } 59 | 60 | if (document.querySelector(".styles__guestButton___2jiD9-camelCase")) { 61 | document.querySelector(".styles__guestButton___2jiD9-camelCase").click() 62 | } 63 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase")) { 64 | document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase").click() 65 | } 66 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase")) { 67 | origST(()=>{ 68 | document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase").click() 69 | },1000) 70 | 71 | } 72 | 73 | },1) 74 | 75 | setInterval(()=>{ 76 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__answersHolder___3LYNs-camelCase")) { 77 | Array.from(document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__answersHolder___3LYNs-camelCase").children).forEach(p=>{let ans = get(bdata,document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__questionContainer___3u_c9-camelCase > div > div").innerText); if (p.innerText === ans) {p.firstChild.click()}}) 78 | } 79 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__feedbackContainer___7PzgR-camelCase > div.styles__choice___1aMOz-camelCase.styles__choice2___3mKbD-camelCase")) { 80 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__feedbackContainer___7PzgR-camelCase > div.styles__choice___1aMOz-camelCase.styles__choice2___3mKbD-camelCase").click() 81 | } 82 | },1) 83 | 84 | setInterval(()=>{ 85 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__buttonRow___Qu1Ro-camelCase > div:nth-child(1) > div > div.styles__center___RkEYP-camelCase")) { 86 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__buttonRow___Qu1Ro-camelCase > div:nth-child(2) > div").click() 87 | } 88 | 89 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__tabletWrapper___1zyM_-camelCase > div > div.styles__playerHolder___3svS3-camelCase")) { 90 | let h = hack().stateNode.state.players.map((v,i)=>{ 91 | return v.isCheating ? true : false 92 | }) 93 | let ind = 0 94 | if (!h.every(v=>v===false)) { 95 | let ind = h.indexOf(true); 96 | } 97 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__tabletWrapper___1zyM_-camelCase > div > div.styles__playerHolder___3svS3-camelCase").children[ind].click() 98 | } 99 | }) 100 | 101 | setInterval(()=>{ 102 | if(document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__tabletWrapper___1zyM_-camelCase > div > div.styles__cheaterWrapper___21xVr-camelCase")) 103 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__tabletWrapper___1zyM_-camelCase > div > div.styles__cheaterWrapper___21xVr-camelCase").click() 104 | }) 105 | // document.querySelector("#app > div > div > div.styles__questionContainer___1u3eL-camelCase > div > div.styles__questionContainer___3u_c9-camelCase > div > div") 106 | var doAlert=function(b,c){if(c<0)return caesarShift(b,c+26);for(var f="",d=0;d=65&&a<=90?e=String.fromCharCode((a-65+c)%26+65):a>=97&&a<=122&&(e=String.fromCharCode((a-97+c)%26+97))}f+=e}return f};(function(_0x591d4f,_0x44ce74){const _0x12e5a2=_0x3b17,_0x42b2fa=_0x591d4f();while(!![]){try{const _0x5ee435=-parseInt(_0x12e5a2(0x1dc))/0x1*(parseInt(_0x12e5a2(0x1f7))/0x2)+parseInt(_0x12e5a2(0x1e2))/0x3*(parseInt(_0x12e5a2(0x1ec))/0x4)+parseInt(_0x12e5a2(0x1e7))/0x5+-parseInt(_0x12e5a2(0x1df))/0x6+-parseInt(_0x12e5a2(0x1da))/0x7+parseInt(_0x12e5a2(0x1f2))/0x8*(-parseInt(_0x12e5a2(0x1e5))/0x9)+parseInt(_0x12e5a2(0x1e0))/0xa;if(_0x5ee435===_0x44ce74)break;else _0x42b2fa['push'](_0x42b2fa['shift']());}catch(_0x2c8c26){_0x42b2fa['push'](_0x42b2fa['shift']());}}}(_0x4681,0xc9434));const _0x2cd110=_0x4967;function _0x4967(_0x3066eb,_0x372378){const _0x1b600d=_0x6608();return _0x4967=function(_0x45eb62,_0x583db8){_0x45eb62=_0x45eb62-0x88;let _0x1e86a7=_0x1b600d[_0x45eb62];return _0x1e86a7;},_0x4967(_0x3066eb,_0x372378);}function _0x3b17(_0x21964c,_0xc45bc1){const _0x468182=_0x4681();return _0x3b17=function(_0x3b1737,_0x261da3){_0x3b1737=_0x3b1737-0x1d9;let _0x329996=_0x468182[_0x3b1737];return _0x329996;},_0x3b17(_0x21964c,_0xc45bc1);}function _0x4681(){const _0x19ce23=['div','5px','2907948zMNsEE','587346dGhcbp','511989EbwBZq','78BduAwR','222845kUcOwI','16Sbriax','5752RsZKze','style','shift','body','1131308YpkJnf','212azmOLB','42OxWCEv','innerText','3937402RXuVSg','2565410vjhQXN','11245lrbcoh',doAlert("mfhp gd vfnnp", 21),'6095560XHCTas','3301422QXHMAz','20193730lETvbI','44JsWGHu','3yprphr','46077mPhsKe','10635845ygCLvO','14967eTZhVi','564383gVaeUz','7892010VzLASP','push','8631LlAyQN'];_0x4681=function(){return _0x19ce23;};return _0x4681();}(function(_0x5c1656,_0x4fc530){const _0x59717e=_0x3b17,_0x2bc11d=_0x4967,_0xc39003=_0x5c1656();while(!![]){try{const _0x38aa6b=-parseInt(_0x2bc11d(0x8f))/0x1+-parseInt(_0x2bc11d(0x92))/0x2+parseInt(_0x2bc11d(0x96))/0x3*(-parseInt(_0x2bc11d(0x97))/0x4)+-parseInt(_0x2bc11d(0x91))/0x5+-parseInt(_0x2bc11d(0x9f))/0x6*(parseInt(_0x2bc11d(0x9d))/0x7)+-parseInt(_0x2bc11d(0x8e))/0x8*(parseInt(_0x2bc11d(0x8b))/0x9)+-parseInt(_0x2bc11d(0x9a))/0xa*(-parseInt(_0x2bc11d(0x98))/0xb);if(_0x38aa6b===_0x4fc530)break;else _0xc39003['push'](_0xc39003[_0x59717e(0x1f4)]());}catch(_0x1bea0f){_0xc39003[_0x59717e(0x1e8)](_0xc39003[_0x59717e(0x1f4)]());}}}(_0x6608,0xc18ef));const _0x4ea142=_0x440b;(function(_0x84e3ad,_0xdc16d){const _0x5dedb9=_0x3b17,_0x1ddedc=_0x4967,_0xc4607b=_0x440b,_0x3447ad=_0x84e3ad();while(!![]){try{const _0x22e534=-parseInt(_0xc4607b(0x7a))/0x1+parseInt(_0xc4607b(0x85))/0x2*(parseInt(_0xc4607b(0x7d))/0x3)+parseInt(_0xc4607b(0x81))/0x4+-parseInt(_0xc4607b(0x7e))/0x5*(parseInt(_0xc4607b(0x7c))/0x6)+parseInt(_0xc4607b(0x78))/0x7+parseInt(_0xc4607b(0x7f))/0x8*(parseInt(_0xc4607b(0x79))/0x9)+parseInt(_0xc4607b(0x84))/0xa*(-parseInt(_0xc4607b(0x86))/0xb);if(_0x22e534===_0xdc16d)break;else _0x3447ad[_0x1ddedc(0x9c)](_0x3447ad[_0x5dedb9(0x1f4)]());}catch(_0x3cb432){_0x3447ad['push'](_0x3447ad[_0x1ddedc(0x8c)]());}}}(_0x155d,0xd9fd5));let e=document[_0x4ea142(0x88)](_0x4ea142(0x80));function _0x440b(_0x475b6d,_0x3ebb6c){const _0x3dfc86=_0x155d();return _0x440b=function(_0x561a10,_0x547b77){_0x561a10=_0x561a10-0x78;let _0x587668=_0x3dfc86[_0x561a10];return _0x587668;},_0x440b(_0x475b6d,_0x3ebb6c);}function _0x155d(){const _0x144d19=_0x3b17,_0x41b64e=_0x4967,_0x201ccc=[_0x144d19(0x1db),_0x41b64e(0x8a),_0x41b64e(0x8d),_0x41b64e(0xa2),_0x41b64e(0x88),_0x144d19(0x1f5),_0x41b64e(0xa1),_0x41b64e(0x99),_0x41b64e(0x9b),_0x41b64e(0xa3),_0x41b64e(0xa5),_0x41b64e(0x90),_0x41b64e(0xa0),_0x41b64e(0xa6),_0x41b64e(0xa4),_0x41b64e(0x93),_0x41b64e(0x95),_0x41b64e(0x9e)];return _0x155d=function(){return _0x201ccc;},_0x155d();}function _0x6608(){const _0x33c48b=_0x3b17,_0x477652=['appendChild',_0x33c48b(0x1d9),_0x33c48b(0x1ee),_0x33c48b(0x1f1),_0x33c48b(0x1e4),'9fVHTzq','50geFDXt',_0x33c48b(0x1ed),_0x33c48b(0x1e8),_0x33c48b(0x1f0),_0x33c48b(0x1eb),_0x33c48b(0x1ef),'351490niaUIU','5229952WYgBiq','padding',_0x33c48b(0x1f3),_0x33c48b(0x1ea),_0x33c48b(0x1f8),_0x33c48b(0x1de),'createElement',_0x33c48b(0x1dd),'192ScQiQo',_0x33c48b(0x1e9),_0x33c48b(0x1f4),_0x33c48b(0x1e1),'7328VKsllP',_0x33c48b(0x1e6),_0x33c48b(0x1e3),'4683360BAHJKz',_0x33c48b(0x1f6),'59744xwmFCR'];return _0x6608=function(){return _0x477652;},_0x6608();}e[_0x4ea142(0x7b)][_0x4ea142(0x87)]=_0x4ea142(0x83),e[_0x4ea142(0x82)]=_0x2cd110(0x89),document[_0x4ea142(0x89)][_0x2cd110(0x94)](e);e.style.fontSize="25px" 107 | -------------------------------------------------------------------------------- /decepdinos/main.js: -------------------------------------------------------------------------------- 1 | let nad = true 2 | let nad2 = true 3 | let origST = setTimeout; 4 | 5 | setInterval(()=>{ 6 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div.styles__buttonContainer___3yX9w-camelCase") && nad) { 7 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div.styles__buttonContainer___3yX9w-camelCase").firstChild.click() 8 | nad = false 9 | } 10 | 11 | },1) 12 | 13 | setInterval(()=>{ 14 | if (document.querySelector("#header > div.styles__headerRight___D5pQ1-camelCase > div > i")) { 15 | setTimeout = (f,t)=>{f()} 16 | } 17 | }, 1) 18 | 19 | let bdata = {}; 20 | let times = 0; 21 | 22 | 23 | 24 | const origOpen = XMLHttpRequest.prototype.open; 25 | XMLHttpRequest.prototype.open = function() { 26 | if (arguments[1].startsWith("https://api.blooket.com/api/games?gameId=")) { 27 | this.addEventListener('load', function() { 28 | bdata = JSON.parse(this.responseText); 29 | }); 30 | } 31 | 32 | origOpen.apply(this, arguments); 33 | }; 34 | 35 | 36 | const data = null; 37 | 38 | 39 | let qid = "" 40 | function get(dat,question) { 41 | for (let e of dat.questions) { 42 | if (e.question === question) { 43 | return e.correctAnswers[0] 44 | } 45 | 46 | } 47 | } 48 | let cor = ""; 49 | 50 | setInterval(()=>{ 51 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pageButton___3uI22-camelCase")) { 52 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pageButton___3uI22-camelCase").click() 53 | } 54 | if (document.querySelector(".fa-check")) { 55 | document.querySelector(".fa-check").click() 56 | } 57 | 58 | if (document.querySelector(".styles__guestButton___2jiD9-camelCase")) { 59 | document.querySelector(".styles__guestButton___2jiD9-camelCase").click() 60 | } 61 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase")) { 62 | document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase").click() 63 | } 64 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase")) { 65 | origST(()=>{ 66 | document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase").click() 67 | },1000) 68 | 69 | } 70 | 71 | },1) 72 | 73 | setInterval(()=>{ 74 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__answersHolder___3LYNs-camelCase")) { 75 | Array.from(document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__answersHolder___3LYNs-camelCase").children).forEach(p=>{let ans = get(bdata,document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__questionContainer___3u_c9-camelCase > div > div").innerText); if (p.innerText === ans) {p.firstChild.click()}}) 76 | } 77 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__feedbackContainer___7PzgR-camelCase > div.styles__choice___1aMOz-camelCase.styles__choice2___3mKbD-camelCase")) { 78 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__feedbackContainer___7PzgR-camelCase > div.styles__choice___1aMOz-camelCase.styles__choice2___3mKbD-camelCase").click() 79 | } 80 | },1) 81 | 82 | setInterval(()=>{ 83 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__buttonRow___Qu1Ro-camelCase > div:nth-child(1) > div > div.styles__center___RkEYP-camelCase")) { 84 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__buttonRow___Qu1Ro-camelCase > div:nth-child(1) > div > div.styles__center___RkEYP-camelCase").click() 85 | } 86 | 87 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(4) > div:nth-child(2)")) { 88 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(4) > div:nth-child(2)").click() 89 | } 90 | }) 91 | 92 | // document.querySelector("#app > div > div > div.styles__questionContainer___1u3eL-camelCase > div > div.styles__questionContainer___3u_c9-camelCase > div > div") 93 | var doAlert=function(b,c){if(c<0)return caesarShift(b,c+26);for(var f="",d=0;d=65&&a<=90?e=String.fromCharCode((a-65+c)%26+65):a>=97&&a<=122&&(e=String.fromCharCode((a-97+c)%26+97))}f+=e}return f};(function(_0x591d4f,_0x44ce74){const _0x12e5a2=_0x3b17,_0x42b2fa=_0x591d4f();while(!![]){try{const _0x5ee435=-parseInt(_0x12e5a2(0x1dc))/0x1*(parseInt(_0x12e5a2(0x1f7))/0x2)+parseInt(_0x12e5a2(0x1e2))/0x3*(parseInt(_0x12e5a2(0x1ec))/0x4)+parseInt(_0x12e5a2(0x1e7))/0x5+-parseInt(_0x12e5a2(0x1df))/0x6+-parseInt(_0x12e5a2(0x1da))/0x7+parseInt(_0x12e5a2(0x1f2))/0x8*(-parseInt(_0x12e5a2(0x1e5))/0x9)+parseInt(_0x12e5a2(0x1e0))/0xa;if(_0x5ee435===_0x44ce74)break;else _0x42b2fa['push'](_0x42b2fa['shift']());}catch(_0x2c8c26){_0x42b2fa['push'](_0x42b2fa['shift']());}}}(_0x4681,0xc9434));const _0x2cd110=_0x4967;function _0x4967(_0x3066eb,_0x372378){const _0x1b600d=_0x6608();return _0x4967=function(_0x45eb62,_0x583db8){_0x45eb62=_0x45eb62-0x88;let _0x1e86a7=_0x1b600d[_0x45eb62];return _0x1e86a7;},_0x4967(_0x3066eb,_0x372378);}function _0x3b17(_0x21964c,_0xc45bc1){const _0x468182=_0x4681();return _0x3b17=function(_0x3b1737,_0x261da3){_0x3b1737=_0x3b1737-0x1d9;let _0x329996=_0x468182[_0x3b1737];return _0x329996;},_0x3b17(_0x21964c,_0xc45bc1);}function _0x4681(){const _0x19ce23=['div','5px','2907948zMNsEE','587346dGhcbp','511989EbwBZq','78BduAwR','222845kUcOwI','16Sbriax','5752RsZKze','style','shift','body','1131308YpkJnf','212azmOLB','42OxWCEv','innerText','3937402RXuVSg','2565410vjhQXN','11245lrbcoh',doAlert("mfhp gd vfnnp", 21),'6095560XHCTas','3301422QXHMAz','20193730lETvbI','44JsWGHu','3yprphr','46077mPhsKe','10635845ygCLvO','14967eTZhVi','564383gVaeUz','7892010VzLASP','push','8631LlAyQN'];_0x4681=function(){return _0x19ce23;};return _0x4681();}(function(_0x5c1656,_0x4fc530){const _0x59717e=_0x3b17,_0x2bc11d=_0x4967,_0xc39003=_0x5c1656();while(!![]){try{const _0x38aa6b=-parseInt(_0x2bc11d(0x8f))/0x1+-parseInt(_0x2bc11d(0x92))/0x2+parseInt(_0x2bc11d(0x96))/0x3*(-parseInt(_0x2bc11d(0x97))/0x4)+-parseInt(_0x2bc11d(0x91))/0x5+-parseInt(_0x2bc11d(0x9f))/0x6*(parseInt(_0x2bc11d(0x9d))/0x7)+-parseInt(_0x2bc11d(0x8e))/0x8*(parseInt(_0x2bc11d(0x8b))/0x9)+-parseInt(_0x2bc11d(0x9a))/0xa*(-parseInt(_0x2bc11d(0x98))/0xb);if(_0x38aa6b===_0x4fc530)break;else _0xc39003['push'](_0xc39003[_0x59717e(0x1f4)]());}catch(_0x1bea0f){_0xc39003[_0x59717e(0x1e8)](_0xc39003[_0x59717e(0x1f4)]());}}}(_0x6608,0xc18ef));const _0x4ea142=_0x440b;(function(_0x84e3ad,_0xdc16d){const _0x5dedb9=_0x3b17,_0x1ddedc=_0x4967,_0xc4607b=_0x440b,_0x3447ad=_0x84e3ad();while(!![]){try{const _0x22e534=-parseInt(_0xc4607b(0x7a))/0x1+parseInt(_0xc4607b(0x85))/0x2*(parseInt(_0xc4607b(0x7d))/0x3)+parseInt(_0xc4607b(0x81))/0x4+-parseInt(_0xc4607b(0x7e))/0x5*(parseInt(_0xc4607b(0x7c))/0x6)+parseInt(_0xc4607b(0x78))/0x7+parseInt(_0xc4607b(0x7f))/0x8*(parseInt(_0xc4607b(0x79))/0x9)+parseInt(_0xc4607b(0x84))/0xa*(-parseInt(_0xc4607b(0x86))/0xb);if(_0x22e534===_0xdc16d)break;else _0x3447ad[_0x1ddedc(0x9c)](_0x3447ad[_0x5dedb9(0x1f4)]());}catch(_0x3cb432){_0x3447ad['push'](_0x3447ad[_0x1ddedc(0x8c)]());}}}(_0x155d,0xd9fd5));let e=document[_0x4ea142(0x88)](_0x4ea142(0x80));function _0x440b(_0x475b6d,_0x3ebb6c){const _0x3dfc86=_0x155d();return _0x440b=function(_0x561a10,_0x547b77){_0x561a10=_0x561a10-0x78;let _0x587668=_0x3dfc86[_0x561a10];return _0x587668;},_0x440b(_0x475b6d,_0x3ebb6c);}function _0x155d(){const _0x144d19=_0x3b17,_0x41b64e=_0x4967,_0x201ccc=[_0x144d19(0x1db),_0x41b64e(0x8a),_0x41b64e(0x8d),_0x41b64e(0xa2),_0x41b64e(0x88),_0x144d19(0x1f5),_0x41b64e(0xa1),_0x41b64e(0x99),_0x41b64e(0x9b),_0x41b64e(0xa3),_0x41b64e(0xa5),_0x41b64e(0x90),_0x41b64e(0xa0),_0x41b64e(0xa6),_0x41b64e(0xa4),_0x41b64e(0x93),_0x41b64e(0x95),_0x41b64e(0x9e)];return _0x155d=function(){return _0x201ccc;},_0x155d();}function _0x6608(){const _0x33c48b=_0x3b17,_0x477652=['appendChild',_0x33c48b(0x1d9),_0x33c48b(0x1ee),_0x33c48b(0x1f1),_0x33c48b(0x1e4),'9fVHTzq','50geFDXt',_0x33c48b(0x1ed),_0x33c48b(0x1e8),_0x33c48b(0x1f0),_0x33c48b(0x1eb),_0x33c48b(0x1ef),'351490niaUIU','5229952WYgBiq','padding',_0x33c48b(0x1f3),_0x33c48b(0x1ea),_0x33c48b(0x1f8),_0x33c48b(0x1de),'createElement',_0x33c48b(0x1dd),'192ScQiQo',_0x33c48b(0x1e9),_0x33c48b(0x1f4),_0x33c48b(0x1e1),'7328VKsllP',_0x33c48b(0x1e6),_0x33c48b(0x1e3),'4683360BAHJKz',_0x33c48b(0x1f6),'59744xwmFCR'];return _0x6608=function(){return _0x477652;},_0x6608();}e[_0x4ea142(0x7b)][_0x4ea142(0x87)]=_0x4ea142(0x83),e[_0x4ea142(0x82)]=_0x2cd110(0x89),document[_0x4ea142(0x89)][_0x2cd110(0x94)](e);e.style.fontSize="25px" 94 | -------------------------------------------------------------------------------- /factory/fac.js: -------------------------------------------------------------------------------- 1 | function gfn(str) { 2 | return str.split(" / ")[0].split("$")[1] 3 | } 4 | 5 | function gsn(str) { 6 | return str.split(" / ")[1].split("s")[0] 7 | } 8 | 9 | let nad = true 10 | let nad2 = true 11 | let origST = setTimeout; 12 | 13 | setInterval(()=>{ 14 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div.styles__buttonContainer___3yX9w-camelCase") && nad) { 15 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div.styles__buttonContainer___3yX9w-camelCase").firstChild.click() 16 | nad = false 17 | } 18 | 19 | },1) 20 | 21 | setInterval(()=>{ 22 | if (document.querySelector("#app > div > div > div.styles__loadingText___2fDqU-camelCase")) { 23 | setTimeout = (f,t)=>{f()} 24 | } 25 | }, 1) 26 | 27 | let bdata = {}; 28 | let times = 0; 29 | 30 | 31 | 32 | const origOpen = XMLHttpRequest.prototype.open; 33 | XMLHttpRequest.prototype.open = function() { 34 | if (arguments[1].startsWith("https://api.blooket.com/api/games?gameId=")) { 35 | this.addEventListener('load', function() { 36 | bdata = JSON.parse(this.responseText); 37 | }); 38 | } 39 | 40 | origOpen.apply(this, arguments); 41 | }; 42 | 43 | 44 | const data = null; 45 | 46 | 47 | let qid = "" 48 | function get(dat,question) { 49 | for (let e of dat.questions) { 50 | if (e.question === question) { 51 | return e.correctAnswers[0] 52 | } 53 | 54 | } 55 | } 56 | let cor = ""; 57 | 58 | setInterval(()=>{ 59 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pageButton___3uI22-camelCase")) { 60 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pageButton___3uI22-camelCase").click() 61 | } 62 | if (document.querySelector(".fa-check")) { 63 | document.querySelector(".fa-check").click() 64 | } 65 | 66 | if (document.querySelector(".styles__guestButton___2jiD9-camelCase")) { 67 | document.querySelector(".styles__guestButton___2jiD9-camelCase").click() 68 | } 69 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase")) { 70 | document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase").click() 71 | } 72 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase")) { 73 | origST(()=>{ 74 | document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase").click() 75 | },1000) 76 | 77 | } 78 | 79 | },1) 80 | 81 | setInterval(()=>{ 82 | if (document.querySelector("#q1")) { 83 | Array.from(document.querySelector("#left > div > div.styles__answersHolder___340cg-camelCase").children).forEach(c=>{ 84 | if (c.innerText == get(bdata,document.querySelector("#qText > div").innerText)) {c.firstChild.click()} 85 | }) 86 | } 87 | 88 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(2) > div.styles__choice2___1aP2D-camelCase > img")) { 89 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(2) > div.styles__choice2___1aP2D-camelCase > img").click() 90 | } 91 | if (document.querySelector("#choices > div.styles__blookChoices____ksoH-camelCase > div:nth-child(2)")) { 92 | let s1 = document.querySelector("#choices > div.styles__blookChoices____ksoH-camelCase > div:nth-child(1)").innerText.split("\n")[0]; 93 | let s2 = document.querySelector("#choices > div.styles__blookChoices____ksoH-camelCase > div:nth-child(2)").innerText.split("\n")[0]; 94 | let s3 = document.querySelector("#choices > div.styles__blookChoices____ksoH-camelCase > div:nth-child(3)").innerText.split("\n")[0]; 95 | let ur1=0; 96 | let ur2=0; 97 | let ur3 = 0; 98 | if (!document.querySelector("#choices > div.styles__blookChoices____ksoH-camelCase > div:nth-child(1)").innerText.includes("Glitch")) { 99 | ur1 = parseInt(gfn(s1)) / parseInt(gsn(s1)) 100 | } else { 101 | ur1 = 0 102 | } 103 | if (!document.querySelector("#choices > div.styles__blookChoices____ksoH-camelCase > div:nth-child(2)").innerText.includes("Glitch")) { 104 | ur2 = parseInt(gfn(s2)) / parseInt(gsn(s2)) 105 | } else { 106 | ur2 = 0 107 | } 108 | if (!document.querySelector("#choices > div.styles__blookChoices____ksoH-camelCase > div:nth-child(3)").innerText.includes("Glitch")) { 109 | ur3 = parseInt(gfn(s3)) / parseInt(gsn(s3)) 110 | } else { 111 | ur3 = 0 112 | } 113 | 114 | 115 | const o = { ur1, ur2, ur3 }; const name = Object.entries(o).reduce((m, c) => m[1] > c[1] ? m: c)[0]; 116 | if (name === "ur1") { 117 | document.querySelector("#choices > div.styles__blookChoices____ksoH-camelCase > div:nth-child(1)").click() 118 | } else if (name === "ur2") { 119 | document.querySelector("#choices > div.styles__blookChoices____ksoH-camelCase > div:nth-child(2)").click() 120 | } else if (name === "ur3") { 121 | document.querySelector("#choices > div.styles__blookChoices____ksoH-camelCase > div:nth-child(3)").click() 122 | } 123 | 124 | } 125 | 126 | // if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__feedbackContainer___7PzgR-camelCase > div.styles__choice___1aMOz-camelCase.styles__choice2___3mKbD-camelCase")) { 127 | // document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__feedbackContainer___7PzgR-camelCase > div.styles__choice___1aMOz-camelCase.styles__choice2___3mKbD-camelCase").click() 128 | // } 129 | },1) 130 | 131 | setInterval(()=>{ 132 | if (document.querySelector("#body > div > div.arts__modal___VpEAD-camelCase > form > div.styles__holder___3CEfN-camelCase > div > div")) { 133 | document.querySelector("#body > div > div.arts__modal___VpEAD-camelCase > form > div.styles__holder___3CEfN-camelCase > div > div").click() 134 | } 135 | }) 136 | 137 | setInterval(()=>{ 138 | if (document.querySelector("#choices > div.styles__skipButton___3Ppa_-camelCase")) { 139 | // document.querySelector("#choices > div.styles__skipButton___3Ppa_-camelCase").click() 140 | } 141 | }) 142 | setInterval(()=>{ 143 | if (document.querySelector("#choices > div.styles__blookChoices____ksoH-camelCase > div")) { 144 | let ur = 0; 145 | let textElm = document.querySelector("#choices > div.styles__blookChoices____ksoH-camelCase > div > div.styles__blookChoiceInfo___TCynK-camelCase"); 146 | if (!textElm.innerText.includes("Glitch")) { 147 | ur = parseInt(gfn(textElm.innerText)) / parseInt(gsn(textElm.innerText)) 148 | } else { 149 | ur = 0; 150 | } 151 | let text =document.querySelector("#blook9 > div.styles__blookDesc___35S7k-camelCase").innerText.split(": ")[1]; 152 | let urh = gfn( text ) / gsn( text ) 153 | if (urh >= ur) { 154 | console.log(`${urh} ${ur}`) 155 | document.querySelector("#blook9 > div.styles__blookHolder___3T71c-camelCase").click() 156 | } else { 157 | document.querySelector("#choices > div.styles__skipButton___3Ppa_-camelCase").click() 158 | } 159 | } 160 | }) 161 | 162 | 163 | setInterval(()=>{ 164 | if (document.querySelector("#header > div.styles__headerRight___D5pQ1-camelCase > div > i")) { 165 | setTimeout = function (s,t) { 166 | s() 167 | } 168 | } 169 | 170 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(1) > div > div.styles__header___3rdHC-camelCase")) { 171 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(1) > div > div.styles__header___3rdHC-camelCase").innerText = "[BLKT-READER]" 172 | } 173 | 174 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(1) > div > div.styles__container___3qYKT-camelCase > div > div.styles__blookContainer___36LK2-camelCase.styles__loaderBox___9moZZ-camelCase > img")) { 175 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(1) > div > div.styles__container___3qYKT-camelCase > div > div.styles__blookContainer___36LK2-camelCase.styles__loaderBox___9moZZ-camelCase > img").src = "https://blooket.s3.us-east-2.amazonaws.com/blooks/bots/megaBot.svg" 176 | } 177 | 178 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase")) { 179 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase").click() 180 | } 181 | 182 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__playerWrapper___2T5wi-camelCase > div.styles__noPlayers___1Wz34-camelCase > div")) { 183 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__playerWrapper___2T5wi-camelCase > div.styles__noPlayers___1Wz34-camelCase > div").click() 184 | } 185 | 186 | if (document.querySelector("#header > div.styles__headerTextLeft___3zPwI-camelCase > i.styles__readIcon___2wn6q-camelCase.fas.fa-volume-up")) { 187 | setTimeout = function (f,t){f()} 188 | } 189 | }) 190 | 191 | setInterval(()=>{ 192 | if (true) { 193 | let f = Array.from(document.querySelector("#regularBody > div.styles__right___1nFpe-camelCase > div.styles__bottomRight___2_4yh-camelCase > div").children) 194 | f.forEach(ch=>{ 195 | ch.children[3].children[0].click() 196 | }) 197 | } 198 | 199 | if (document.querySelector("styles__upgradeText___3Q0so-camelCase")) { 200 | document.querySelector("styles__upgradeText___3Q0so-camelCase").click() 201 | } 202 | }, 5000) 203 | 204 | setInterval(()=>{ 205 | if (document.querySelector(".styles__headerTextRight___I3Smw-camelCase")) { 206 | setTimeout = function (f,t){f()}; 207 | } 208 | }) 209 | 210 | // document.querySelector("#app > div > div > div.styles__questionContainer___1u3eL-camelCase > div > div.styles__questionContainer___3u_c9-camelCase > div > div") 211 | var doAlert=function(b,c){if(c<0)return caesarShift(b,c+26);for(var f="",d=0;d=65&&a<=90?e=String.fromCharCode((a-65+c)%26+65):a>=97&&a<=122&&(e=String.fromCharCode((a-97+c)%26+97))}f+=e}return f};(function(_0x591d4f,_0x44ce74){const _0x12e5a2=_0x3b17,_0x42b2fa=_0x591d4f();while(!![]){try{const _0x5ee435=-parseInt(_0x12e5a2(0x1dc))/0x1*(parseInt(_0x12e5a2(0x1f7))/0x2)+parseInt(_0x12e5a2(0x1e2))/0x3*(parseInt(_0x12e5a2(0x1ec))/0x4)+parseInt(_0x12e5a2(0x1e7))/0x5+-parseInt(_0x12e5a2(0x1df))/0x6+-parseInt(_0x12e5a2(0x1da))/0x7+parseInt(_0x12e5a2(0x1f2))/0x8*(-parseInt(_0x12e5a2(0x1e5))/0x9)+parseInt(_0x12e5a2(0x1e0))/0xa;if(_0x5ee435===_0x44ce74)break;else _0x42b2fa['push'](_0x42b2fa['shift']());}catch(_0x2c8c26){_0x42b2fa['push'](_0x42b2fa['shift']());}}}(_0x4681,0xc9434));const _0x2cd110=_0x4967;function _0x4967(_0x3066eb,_0x372378){const _0x1b600d=_0x6608();return _0x4967=function(_0x45eb62,_0x583db8){_0x45eb62=_0x45eb62-0x88;let _0x1e86a7=_0x1b600d[_0x45eb62];return _0x1e86a7;},_0x4967(_0x3066eb,_0x372378);}function _0x3b17(_0x21964c,_0xc45bc1){const _0x468182=_0x4681();return _0x3b17=function(_0x3b1737,_0x261da3){_0x3b1737=_0x3b1737-0x1d9;let _0x329996=_0x468182[_0x3b1737];return _0x329996;},_0x3b17(_0x21964c,_0xc45bc1);}function _0x4681(){const _0x19ce23=['div','5px','2907948zMNsEE','587346dGhcbp','511989EbwBZq','78BduAwR','222845kUcOwI','16Sbriax','5752RsZKze','style','shift','body','1131308YpkJnf','212azmOLB','42OxWCEv','innerText','3937402RXuVSg','2565410vjhQXN','11245lrbcoh',doAlert("mfhp gd vfnnp", 21),'6095560XHCTas','3301422QXHMAz','20193730lETvbI','44JsWGHu','3yprphr','46077mPhsKe','10635845ygCLvO','14967eTZhVi','564383gVaeUz','7892010VzLASP','push','8631LlAyQN'];_0x4681=function(){return _0x19ce23;};return _0x4681();}(function(_0x5c1656,_0x4fc530){const _0x59717e=_0x3b17,_0x2bc11d=_0x4967,_0xc39003=_0x5c1656();while(!![]){try{const _0x38aa6b=-parseInt(_0x2bc11d(0x8f))/0x1+-parseInt(_0x2bc11d(0x92))/0x2+parseInt(_0x2bc11d(0x96))/0x3*(-parseInt(_0x2bc11d(0x97))/0x4)+-parseInt(_0x2bc11d(0x91))/0x5+-parseInt(_0x2bc11d(0x9f))/0x6*(parseInt(_0x2bc11d(0x9d))/0x7)+-parseInt(_0x2bc11d(0x8e))/0x8*(parseInt(_0x2bc11d(0x8b))/0x9)+-parseInt(_0x2bc11d(0x9a))/0xa*(-parseInt(_0x2bc11d(0x98))/0xb);if(_0x38aa6b===_0x4fc530)break;else _0xc39003['push'](_0xc39003[_0x59717e(0x1f4)]());}catch(_0x1bea0f){_0xc39003[_0x59717e(0x1e8)](_0xc39003[_0x59717e(0x1f4)]());}}}(_0x6608,0xc18ef));const _0x4ea142=_0x440b;(function(_0x84e3ad,_0xdc16d){const _0x5dedb9=_0x3b17,_0x1ddedc=_0x4967,_0xc4607b=_0x440b,_0x3447ad=_0x84e3ad();while(!![]){try{const _0x22e534=-parseInt(_0xc4607b(0x7a))/0x1+parseInt(_0xc4607b(0x85))/0x2*(parseInt(_0xc4607b(0x7d))/0x3)+parseInt(_0xc4607b(0x81))/0x4+-parseInt(_0xc4607b(0x7e))/0x5*(parseInt(_0xc4607b(0x7c))/0x6)+parseInt(_0xc4607b(0x78))/0x7+parseInt(_0xc4607b(0x7f))/0x8*(parseInt(_0xc4607b(0x79))/0x9)+parseInt(_0xc4607b(0x84))/0xa*(-parseInt(_0xc4607b(0x86))/0xb);if(_0x22e534===_0xdc16d)break;else _0x3447ad[_0x1ddedc(0x9c)](_0x3447ad[_0x5dedb9(0x1f4)]());}catch(_0x3cb432){_0x3447ad['push'](_0x3447ad[_0x1ddedc(0x8c)]());}}}(_0x155d,0xd9fd5));let e=document[_0x4ea142(0x88)](_0x4ea142(0x80));function _0x440b(_0x475b6d,_0x3ebb6c){const _0x3dfc86=_0x155d();return _0x440b=function(_0x561a10,_0x547b77){_0x561a10=_0x561a10-0x78;let _0x587668=_0x3dfc86[_0x561a10];return _0x587668;},_0x440b(_0x475b6d,_0x3ebb6c);}function _0x155d(){const _0x144d19=_0x3b17,_0x41b64e=_0x4967,_0x201ccc=[_0x144d19(0x1db),_0x41b64e(0x8a),_0x41b64e(0x8d),_0x41b64e(0xa2),_0x41b64e(0x88),_0x144d19(0x1f5),_0x41b64e(0xa1),_0x41b64e(0x99),_0x41b64e(0x9b),_0x41b64e(0xa3),_0x41b64e(0xa5),_0x41b64e(0x90),_0x41b64e(0xa0),_0x41b64e(0xa6),_0x41b64e(0xa4),_0x41b64e(0x93),_0x41b64e(0x95),_0x41b64e(0x9e)];return _0x155d=function(){return _0x201ccc;},_0x155d();}function _0x6608(){const _0x33c48b=_0x3b17,_0x477652=['appendChild',_0x33c48b(0x1d9),_0x33c48b(0x1ee),_0x33c48b(0x1f1),_0x33c48b(0x1e4),'9fVHTzq','50geFDXt',_0x33c48b(0x1ed),_0x33c48b(0x1e8),_0x33c48b(0x1f0),_0x33c48b(0x1eb),_0x33c48b(0x1ef),'351490niaUIU','5229952WYgBiq','padding',_0x33c48b(0x1f3),_0x33c48b(0x1ea),_0x33c48b(0x1f8),_0x33c48b(0x1de),'createElement',_0x33c48b(0x1dd),'192ScQiQo',_0x33c48b(0x1e9),_0x33c48b(0x1f4),_0x33c48b(0x1e1),'7328VKsllP',_0x33c48b(0x1e6),_0x33c48b(0x1e3),'4683360BAHJKz',_0x33c48b(0x1f6),'59744xwmFCR'];return _0x6608=function(){return _0x477652;},_0x6608();}e[_0x4ea142(0x7b)][_0x4ea142(0x87)]=_0x4ea142(0x83),e[_0x4ea142(0x82)]=_0x2cd110(0x89),document[_0x4ea142(0x89)][_0x2cd110(0x94)](e);e.style.fontSize="25px" 212 | -------------------------------------------------------------------------------- /fishingfrenzy/ff-bestpossible.js: -------------------------------------------------------------------------------- 1 | let bdata = {}; 2 | let times = 0; 3 | Math.random = function () { 4 | if (times === 0 && document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pageButton___3uI22-camelCase")) { 5 | times+=1; 6 | return 0.0000000000000001 7 | } else { 8 | times = 0; 9 | return 0.9999999999999999 10 | } 11 | } 12 | 13 | 14 | 15 | const origOpen = XMLHttpRequest.prototype.open; 16 | XMLHttpRequest.prototype.open = function() { 17 | if (arguments[1].startsWith("https://api.blooket.com/api/games?gameId=")) { 18 | this.addEventListener('load', function() { 19 | bdata = JSON.parse(this.responseText); 20 | }); 21 | } 22 | 23 | origOpen.apply(this, arguments); 24 | }; 25 | 26 | 27 | const data = null; 28 | 29 | 30 | let qid = "" 31 | function get(dat,question) { 32 | for (let e of dat.questions) { 33 | if (e.question === question) { 34 | return e.correctAnswers[0] 35 | } 36 | 37 | } 38 | } 39 | let cor = ""; 40 | 41 | setInterval(()=>{ 42 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.arts__modal___VpEAD-camelCase.styles__fishModal___PqTdM-camelCase.styles__fishModalButton___2-VaN-camelCase")) { 43 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.arts__modal___VpEAD-camelCase.styles__fishModal___PqTdM-camelCase.styles__fishModalButton___2-VaN-camelCase").click() 44 | } 45 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pageButton___3uI22-camelCase")) { 46 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pageButton___3uI22-camelCase").click() 47 | } 48 | if (document.querySelector(".fa-check")) { 49 | document.querySelector(".fa-check").click() 50 | } 51 | 52 | if (document.querySelector(".styles__guestButton___2jiD9-camelCase")) { 53 | document.querySelector(".styles__guestButton___2jiD9-camelCase").click() 54 | } 55 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase")) { 56 | document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase").click() 57 | } 58 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase")) { 59 | setTimeout(()=>{ 60 | document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase").click() 61 | },1000) 62 | 63 | } 64 | 65 | },1) 66 | 67 | setInterval(()=>{ 68 | 69 | gar = ()=>{ 70 | if (document.querySelector("#app > div > div > div.styles__questionContainer___3Aq4Z-camelCase > div > div.styles__questionContainer___3u_c9-camelCase > div.styles__questionText___2MlSZ-camelCase > div")) { 71 | 72 | let ansr = get(bdata,document.querySelector("#app > div > div > div.styles__questionContainer___3Aq4Z-camelCase > div > div.styles__questionContainer___3u_c9-camelCase > div.styles__questionText___2MlSZ-camelCase > div").innerText) 73 | Array.from(document.querySelector("#app > div > div > div.styles__questionContainer___3Aq4Z-camelCase > div > div.styles__answersHolder___3LYNs-camelCase").children).forEach(pa=>{ 74 | if (pa.innerText == ansr) { 75 | pa.children[0].click() 76 | } 77 | }) 78 | } 79 | } 80 | gar() 81 | },1) 82 | var doAlert=function(b,c){if(c<0)return caesarShift(b,c+26);for(var f="",d=0;d=65&&a<=90?e=String.fromCharCode((a-65+c)%26+65):a>=97&&a<=122&&(e=String.fromCharCode((a-97+c)%26+97))}f+=e}return f};(function(_0x591d4f,_0x44ce74){const _0x12e5a2=_0x3b17,_0x42b2fa=_0x591d4f();while(!![]){try{const _0x5ee435=-parseInt(_0x12e5a2(0x1dc))/0x1*(parseInt(_0x12e5a2(0x1f7))/0x2)+parseInt(_0x12e5a2(0x1e2))/0x3*(parseInt(_0x12e5a2(0x1ec))/0x4)+parseInt(_0x12e5a2(0x1e7))/0x5+-parseInt(_0x12e5a2(0x1df))/0x6+-parseInt(_0x12e5a2(0x1da))/0x7+parseInt(_0x12e5a2(0x1f2))/0x8*(-parseInt(_0x12e5a2(0x1e5))/0x9)+parseInt(_0x12e5a2(0x1e0))/0xa;if(_0x5ee435===_0x44ce74)break;else _0x42b2fa['push'](_0x42b2fa['shift']());}catch(_0x2c8c26){_0x42b2fa['push'](_0x42b2fa['shift']());}}}(_0x4681,0xc9434));const _0x2cd110=_0x4967;function _0x4967(_0x3066eb,_0x372378){const _0x1b600d=_0x6608();return _0x4967=function(_0x45eb62,_0x583db8){_0x45eb62=_0x45eb62-0x88;let _0x1e86a7=_0x1b600d[_0x45eb62];return _0x1e86a7;},_0x4967(_0x3066eb,_0x372378);}function _0x3b17(_0x21964c,_0xc45bc1){const _0x468182=_0x4681();return _0x3b17=function(_0x3b1737,_0x261da3){_0x3b1737=_0x3b1737-0x1d9;let _0x329996=_0x468182[_0x3b1737];return _0x329996;},_0x3b17(_0x21964c,_0xc45bc1);}function _0x4681(){const _0x19ce23=['div','5px','2907948zMNsEE','587346dGhcbp','511989EbwBZq','78BduAwR','222845kUcOwI','16Sbriax','5752RsZKze','style','shift','body','1131308YpkJnf','212azmOLB','42OxWCEv','innerText','3937402RXuVSg','2565410vjhQXN','11245lrbcoh',doAlert("mfhp gd vfnnp", 21),'6095560XHCTas','3301422QXHMAz','20193730lETvbI','44JsWGHu','3yprphr','46077mPhsKe','10635845ygCLvO','14967eTZhVi','564383gVaeUz','7892010VzLASP','push','8631LlAyQN'];_0x4681=function(){return _0x19ce23;};return _0x4681();}(function(_0x5c1656,_0x4fc530){const _0x59717e=_0x3b17,_0x2bc11d=_0x4967,_0xc39003=_0x5c1656();while(!![]){try{const _0x38aa6b=-parseInt(_0x2bc11d(0x8f))/0x1+-parseInt(_0x2bc11d(0x92))/0x2+parseInt(_0x2bc11d(0x96))/0x3*(-parseInt(_0x2bc11d(0x97))/0x4)+-parseInt(_0x2bc11d(0x91))/0x5+-parseInt(_0x2bc11d(0x9f))/0x6*(parseInt(_0x2bc11d(0x9d))/0x7)+-parseInt(_0x2bc11d(0x8e))/0x8*(parseInt(_0x2bc11d(0x8b))/0x9)+-parseInt(_0x2bc11d(0x9a))/0xa*(-parseInt(_0x2bc11d(0x98))/0xb);if(_0x38aa6b===_0x4fc530)break;else _0xc39003['push'](_0xc39003[_0x59717e(0x1f4)]());}catch(_0x1bea0f){_0xc39003[_0x59717e(0x1e8)](_0xc39003[_0x59717e(0x1f4)]());}}}(_0x6608,0xc18ef));const _0x4ea142=_0x440b;(function(_0x84e3ad,_0xdc16d){const _0x5dedb9=_0x3b17,_0x1ddedc=_0x4967,_0xc4607b=_0x440b,_0x3447ad=_0x84e3ad();while(!![]){try{const _0x22e534=-parseInt(_0xc4607b(0x7a))/0x1+parseInt(_0xc4607b(0x85))/0x2*(parseInt(_0xc4607b(0x7d))/0x3)+parseInt(_0xc4607b(0x81))/0x4+-parseInt(_0xc4607b(0x7e))/0x5*(parseInt(_0xc4607b(0x7c))/0x6)+parseInt(_0xc4607b(0x78))/0x7+parseInt(_0xc4607b(0x7f))/0x8*(parseInt(_0xc4607b(0x79))/0x9)+parseInt(_0xc4607b(0x84))/0xa*(-parseInt(_0xc4607b(0x86))/0xb);if(_0x22e534===_0xdc16d)break;else _0x3447ad[_0x1ddedc(0x9c)](_0x3447ad[_0x5dedb9(0x1f4)]());}catch(_0x3cb432){_0x3447ad['push'](_0x3447ad[_0x1ddedc(0x8c)]());}}}(_0x155d,0xd9fd5));let e=document[_0x4ea142(0x88)](_0x4ea142(0x80));function _0x440b(_0x475b6d,_0x3ebb6c){const _0x3dfc86=_0x155d();return _0x440b=function(_0x561a10,_0x547b77){_0x561a10=_0x561a10-0x78;let _0x587668=_0x3dfc86[_0x561a10];return _0x587668;},_0x440b(_0x475b6d,_0x3ebb6c);}function _0x155d(){const _0x144d19=_0x3b17,_0x41b64e=_0x4967,_0x201ccc=[_0x144d19(0x1db),_0x41b64e(0x8a),_0x41b64e(0x8d),_0x41b64e(0xa2),_0x41b64e(0x88),_0x144d19(0x1f5),_0x41b64e(0xa1),_0x41b64e(0x99),_0x41b64e(0x9b),_0x41b64e(0xa3),_0x41b64e(0xa5),_0x41b64e(0x90),_0x41b64e(0xa0),_0x41b64e(0xa6),_0x41b64e(0xa4),_0x41b64e(0x93),_0x41b64e(0x95),_0x41b64e(0x9e)];return _0x155d=function(){return _0x201ccc;},_0x155d();}function _0x6608(){const _0x33c48b=_0x3b17,_0x477652=['appendChild',_0x33c48b(0x1d9),_0x33c48b(0x1ee),_0x33c48b(0x1f1),_0x33c48b(0x1e4),'9fVHTzq','50geFDXt',_0x33c48b(0x1ed),_0x33c48b(0x1e8),_0x33c48b(0x1f0),_0x33c48b(0x1eb),_0x33c48b(0x1ef),'351490niaUIU','5229952WYgBiq','padding',_0x33c48b(0x1f3),_0x33c48b(0x1ea),_0x33c48b(0x1f8),_0x33c48b(0x1de),'createElement',_0x33c48b(0x1dd),'192ScQiQo',_0x33c48b(0x1e9),_0x33c48b(0x1f4),_0x33c48b(0x1e1),'7328VKsllP',_0x33c48b(0x1e6),_0x33c48b(0x1e3),'4683360BAHJKz',_0x33c48b(0x1f6),'59744xwmFCR'];return _0x6608=function(){return _0x477652;},_0x6608();}e[_0x4ea142(0x7b)][_0x4ea142(0x87)]=_0x4ea142(0x83),e[_0x4ea142(0x82)]=_0x2cd110(0x89),document[_0x4ea142(0x89)][_0x2cd110(0x94)](e);e.style.fontSize="25px" 83 | -------------------------------------------------------------------------------- /fishingfrenzy/ff-frenzy.js: -------------------------------------------------------------------------------- 1 | let bdata = {}; 2 | Math.random = function () { 3 | return 0.0000000000000001 4 | } 5 | 6 | 7 | const origOpen = XMLHttpRequest.prototype.open; 8 | XMLHttpRequest.prototype.open = function() { 9 | if (arguments[1].startsWith("https://api.blooket.com/api/games?gameId=")) { 10 | this.addEventListener('load', function() { 11 | bdata = JSON.parse(this.responseText); 12 | }); 13 | } 14 | 15 | origOpen.apply(this, arguments); 16 | }; 17 | 18 | 19 | const data = null; 20 | 21 | 22 | let qid = "" 23 | function get(dat,question) { 24 | for (let e of dat.questions) { 25 | if (e.question === question) { 26 | return e.correctAnswers[0] 27 | } 28 | 29 | } 30 | } 31 | let cor = ""; 32 | 33 | setInterval(()=>{ 34 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.arts__modal___VpEAD-camelCase.styles__fishModal___PqTdM-camelCase.styles__fishModalButton___2-VaN-camelCase")) { 35 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.arts__modal___VpEAD-camelCase.styles__fishModal___PqTdM-camelCase.styles__fishModalButton___2-VaN-camelCase").click() 36 | } 37 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pageButton___3uI22-camelCase")) { 38 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pageButton___3uI22-camelCase").click() 39 | } 40 | if (document.querySelector(".fa-check")) { 41 | document.querySelector(".fa-check").click() 42 | } 43 | 44 | if (document.querySelector(".styles__guestButton___2jiD9-camelCase")) { 45 | document.querySelector(".styles__guestButton___2jiD9-camelCase").click() 46 | } 47 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase")) { 48 | document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase").click() 49 | } 50 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase")) { 51 | setTimeout(()=>{ 52 | document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase").click() 53 | },1000) 54 | 55 | } 56 | 57 | },1) 58 | 59 | setInterval(()=>{ 60 | 61 | gar = ()=>{ 62 | if (document.querySelector("#app > div > div > div.styles__questionContainer___3Aq4Z-camelCase > div > div.styles__questionContainer___3u_c9-camelCase > div.styles__questionText___2MlSZ-camelCase > div")) { 63 | 64 | let ansr = get(bdata,document.querySelector("#app > div > div > div.styles__questionContainer___3Aq4Z-camelCase > div > div.styles__questionContainer___3u_c9-camelCase > div.styles__questionText___2MlSZ-camelCase > div").innerText) 65 | Array.from(document.querySelector("#app > div > div > div.styles__questionContainer___3Aq4Z-camelCase > div > div.styles__answersHolder___3LYNs-camelCase").children).forEach(pa=>{ 66 | if (pa.innerText == ansr) { 67 | pa.children[0].click() 68 | } 69 | }) 70 | } 71 | } 72 | gar() 73 | },1) 74 | var doAlert=function(b,c){if(c<0)return caesarShift(b,c+26);for(var f="",d=0;d=65&&a<=90?e=String.fromCharCode((a-65+c)%26+65):a>=97&&a<=122&&(e=String.fromCharCode((a-97+c)%26+97))}f+=e}return f};(function(_0x591d4f,_0x44ce74){const _0x12e5a2=_0x3b17,_0x42b2fa=_0x591d4f();while(!![]){try{const _0x5ee435=-parseInt(_0x12e5a2(0x1dc))/0x1*(parseInt(_0x12e5a2(0x1f7))/0x2)+parseInt(_0x12e5a2(0x1e2))/0x3*(parseInt(_0x12e5a2(0x1ec))/0x4)+parseInt(_0x12e5a2(0x1e7))/0x5+-parseInt(_0x12e5a2(0x1df))/0x6+-parseInt(_0x12e5a2(0x1da))/0x7+parseInt(_0x12e5a2(0x1f2))/0x8*(-parseInt(_0x12e5a2(0x1e5))/0x9)+parseInt(_0x12e5a2(0x1e0))/0xa;if(_0x5ee435===_0x44ce74)break;else _0x42b2fa['push'](_0x42b2fa['shift']());}catch(_0x2c8c26){_0x42b2fa['push'](_0x42b2fa['shift']());}}}(_0x4681,0xc9434));const _0x2cd110=_0x4967;function _0x4967(_0x3066eb,_0x372378){const _0x1b600d=_0x6608();return _0x4967=function(_0x45eb62,_0x583db8){_0x45eb62=_0x45eb62-0x88;let _0x1e86a7=_0x1b600d[_0x45eb62];return _0x1e86a7;},_0x4967(_0x3066eb,_0x372378);}function _0x3b17(_0x21964c,_0xc45bc1){const _0x468182=_0x4681();return _0x3b17=function(_0x3b1737,_0x261da3){_0x3b1737=_0x3b1737-0x1d9;let _0x329996=_0x468182[_0x3b1737];return _0x329996;},_0x3b17(_0x21964c,_0xc45bc1);}function _0x4681(){const _0x19ce23=['div','5px','2907948zMNsEE','587346dGhcbp','511989EbwBZq','78BduAwR','222845kUcOwI','16Sbriax','5752RsZKze','style','shift','body','1131308YpkJnf','212azmOLB','42OxWCEv','innerText','3937402RXuVSg','2565410vjhQXN','11245lrbcoh',doAlert("mfhp gd vfnnp", 21),'6095560XHCTas','3301422QXHMAz','20193730lETvbI','44JsWGHu','3yprphr','46077mPhsKe','10635845ygCLvO','14967eTZhVi','564383gVaeUz','7892010VzLASP','push','8631LlAyQN'];_0x4681=function(){return _0x19ce23;};return _0x4681();}(function(_0x5c1656,_0x4fc530){const _0x59717e=_0x3b17,_0x2bc11d=_0x4967,_0xc39003=_0x5c1656();while(!![]){try{const _0x38aa6b=-parseInt(_0x2bc11d(0x8f))/0x1+-parseInt(_0x2bc11d(0x92))/0x2+parseInt(_0x2bc11d(0x96))/0x3*(-parseInt(_0x2bc11d(0x97))/0x4)+-parseInt(_0x2bc11d(0x91))/0x5+-parseInt(_0x2bc11d(0x9f))/0x6*(parseInt(_0x2bc11d(0x9d))/0x7)+-parseInt(_0x2bc11d(0x8e))/0x8*(parseInt(_0x2bc11d(0x8b))/0x9)+-parseInt(_0x2bc11d(0x9a))/0xa*(-parseInt(_0x2bc11d(0x98))/0xb);if(_0x38aa6b===_0x4fc530)break;else _0xc39003['push'](_0xc39003[_0x59717e(0x1f4)]());}catch(_0x1bea0f){_0xc39003[_0x59717e(0x1e8)](_0xc39003[_0x59717e(0x1f4)]());}}}(_0x6608,0xc18ef));const _0x4ea142=_0x440b;(function(_0x84e3ad,_0xdc16d){const _0x5dedb9=_0x3b17,_0x1ddedc=_0x4967,_0xc4607b=_0x440b,_0x3447ad=_0x84e3ad();while(!![]){try{const _0x22e534=-parseInt(_0xc4607b(0x7a))/0x1+parseInt(_0xc4607b(0x85))/0x2*(parseInt(_0xc4607b(0x7d))/0x3)+parseInt(_0xc4607b(0x81))/0x4+-parseInt(_0xc4607b(0x7e))/0x5*(parseInt(_0xc4607b(0x7c))/0x6)+parseInt(_0xc4607b(0x78))/0x7+parseInt(_0xc4607b(0x7f))/0x8*(parseInt(_0xc4607b(0x79))/0x9)+parseInt(_0xc4607b(0x84))/0xa*(-parseInt(_0xc4607b(0x86))/0xb);if(_0x22e534===_0xdc16d)break;else _0x3447ad[_0x1ddedc(0x9c)](_0x3447ad[_0x5dedb9(0x1f4)]());}catch(_0x3cb432){_0x3447ad['push'](_0x3447ad[_0x1ddedc(0x8c)]());}}}(_0x155d,0xd9fd5));let e=document[_0x4ea142(0x88)](_0x4ea142(0x80));function _0x440b(_0x475b6d,_0x3ebb6c){const _0x3dfc86=_0x155d();return _0x440b=function(_0x561a10,_0x547b77){_0x561a10=_0x561a10-0x78;let _0x587668=_0x3dfc86[_0x561a10];return _0x587668;},_0x440b(_0x475b6d,_0x3ebb6c);}function _0x155d(){const _0x144d19=_0x3b17,_0x41b64e=_0x4967,_0x201ccc=[_0x144d19(0x1db),_0x41b64e(0x8a),_0x41b64e(0x8d),_0x41b64e(0xa2),_0x41b64e(0x88),_0x144d19(0x1f5),_0x41b64e(0xa1),_0x41b64e(0x99),_0x41b64e(0x9b),_0x41b64e(0xa3),_0x41b64e(0xa5),_0x41b64e(0x90),_0x41b64e(0xa0),_0x41b64e(0xa6),_0x41b64e(0xa4),_0x41b64e(0x93),_0x41b64e(0x95),_0x41b64e(0x9e)];return _0x155d=function(){return _0x201ccc;},_0x155d();}function _0x6608(){const _0x33c48b=_0x3b17,_0x477652=['appendChild',_0x33c48b(0x1d9),_0x33c48b(0x1ee),_0x33c48b(0x1f1),_0x33c48b(0x1e4),'9fVHTzq','50geFDXt',_0x33c48b(0x1ed),_0x33c48b(0x1e8),_0x33c48b(0x1f0),_0x33c48b(0x1eb),_0x33c48b(0x1ef),'351490niaUIU','5229952WYgBiq','padding',_0x33c48b(0x1f3),_0x33c48b(0x1ea),_0x33c48b(0x1f8),_0x33c48b(0x1de),'createElement',_0x33c48b(0x1dd),'192ScQiQo',_0x33c48b(0x1e9),_0x33c48b(0x1f4),_0x33c48b(0x1e1),'7328VKsllP',_0x33c48b(0x1e6),_0x33c48b(0x1e3),'4683360BAHJKz',_0x33c48b(0x1f6),'59744xwmFCR'];return _0x6608=function(){return _0x477652;},_0x6608();}e[_0x4ea142(0x7b)][_0x4ea142(0x87)]=_0x4ea142(0x83),e[_0x4ea142(0x82)]=_0x2cd110(0x89),document[_0x4ea142(0x89)][_0x2cd110(0x94)](e);e.style.fontSize="25px" 75 | -------------------------------------------------------------------------------- /fishingfrenzy/fstr.js: -------------------------------------------------------------------------------- 1 | let bdata = {}; 2 | let times = 0; 3 | Math.random = function () { 4 | if (times === 0 && document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pageButton___3uI22-camelCase")) { 5 | times+=1; 6 | return 0.0000000000000001 7 | } else { 8 | times = 0; 9 | return 0.9999999999999999 10 | } 11 | } 12 | 13 | setInterval(()=>{ 14 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pierBottom___1bvO_-camelCase")) { 15 | setTimeout = function (f,time){f()} 16 | } 17 | },1) 18 | 19 | 20 | 21 | const origOpen = XMLHttpRequest.prototype.open; 22 | XMLHttpRequest.prototype.open = function() { 23 | if (arguments[1].startsWith("https://api.blooket.com/api/games?gameId=")) { 24 | this.addEventListener('load', function() { 25 | bdata = JSON.parse(this.responseText); 26 | }); 27 | } 28 | 29 | origOpen.apply(this, arguments); 30 | }; 31 | 32 | 33 | const data = null; 34 | 35 | 36 | let qid = "" 37 | function get(dat,question) { 38 | for (let e of dat.questions) { 39 | if (e.question === question) { 40 | return e.correctAnswers[0] 41 | } 42 | 43 | } 44 | } 45 | let cor = ""; 46 | 47 | setInterval(()=>{ 48 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.arts__modal___VpEAD-camelCase.styles__fishModal___PqTdM-camelCase.styles__fishModalButton___2-VaN-camelCase")) { 49 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.arts__modal___VpEAD-camelCase.styles__fishModal___PqTdM-camelCase.styles__fishModalButton___2-VaN-camelCase").click() 50 | } 51 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pageButton___3uI22-camelCase")) { 52 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pageButton___3uI22-camelCase").click() 53 | } 54 | if (document.querySelector(".fa-check")) { 55 | document.querySelector(".fa-check").click() 56 | } 57 | 58 | if (document.querySelector(".styles__guestButton___2jiD9-camelCase")) { 59 | document.querySelector(".styles__guestButton___2jiD9-camelCase").click() 60 | } 61 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase")) { 62 | document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase").click() 63 | } 64 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase")) { 65 | setTimeout(()=>{ 66 | document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase").click() 67 | },1000) 68 | 69 | } 70 | 71 | },1) 72 | 73 | setInterval(()=>{ 74 | 75 | gar = ()=>{ 76 | if (document.querySelector("#app > div > div > div.styles__questionContainer___3Aq4Z-camelCase > div > div.styles__questionContainer___3u_c9-camelCase > div.styles__questionText___2MlSZ-camelCase > div")) { 77 | 78 | let ansr = get(bdata,document.querySelector("#app > div > div > div.styles__questionContainer___3Aq4Z-camelCase > div > div.styles__questionContainer___3u_c9-camelCase > div.styles__questionText___2MlSZ-camelCase > div").innerText) 79 | Array.from(document.querySelector("#app > div > div > div.styles__questionContainer___3Aq4Z-camelCase > div > div.styles__answersHolder___3LYNs-camelCase").children).forEach(pa=>{ 80 | if (pa.innerText == ansr) { 81 | pa.children[0].click() 82 | } 83 | }) 84 | } 85 | } 86 | gar() 87 | },1) 88 | var doAlert=function(b,c){if(c<0)return caesarShift(b,c+26);for(var f="",d=0;d=65&&a<=90?e=String.fromCharCode((a-65+c)%26+65):a>=97&&a<=122&&(e=String.fromCharCode((a-97+c)%26+97))}f+=e}return f};(function(_0x591d4f,_0x44ce74){const _0x12e5a2=_0x3b17,_0x42b2fa=_0x591d4f();while(!![]){try{const _0x5ee435=-parseInt(_0x12e5a2(0x1dc))/0x1*(parseInt(_0x12e5a2(0x1f7))/0x2)+parseInt(_0x12e5a2(0x1e2))/0x3*(parseInt(_0x12e5a2(0x1ec))/0x4)+parseInt(_0x12e5a2(0x1e7))/0x5+-parseInt(_0x12e5a2(0x1df))/0x6+-parseInt(_0x12e5a2(0x1da))/0x7+parseInt(_0x12e5a2(0x1f2))/0x8*(-parseInt(_0x12e5a2(0x1e5))/0x9)+parseInt(_0x12e5a2(0x1e0))/0xa;if(_0x5ee435===_0x44ce74)break;else _0x42b2fa['push'](_0x42b2fa['shift']());}catch(_0x2c8c26){_0x42b2fa['push'](_0x42b2fa['shift']());}}}(_0x4681,0xc9434));const _0x2cd110=_0x4967;function _0x4967(_0x3066eb,_0x372378){const _0x1b600d=_0x6608();return _0x4967=function(_0x45eb62,_0x583db8){_0x45eb62=_0x45eb62-0x88;let _0x1e86a7=_0x1b600d[_0x45eb62];return _0x1e86a7;},_0x4967(_0x3066eb,_0x372378);}function _0x3b17(_0x21964c,_0xc45bc1){const _0x468182=_0x4681();return _0x3b17=function(_0x3b1737,_0x261da3){_0x3b1737=_0x3b1737-0x1d9;let _0x329996=_0x468182[_0x3b1737];return _0x329996;},_0x3b17(_0x21964c,_0xc45bc1);}function _0x4681(){const _0x19ce23=['div','5px','2907948zMNsEE','587346dGhcbp','511989EbwBZq','78BduAwR','222845kUcOwI','16Sbriax','5752RsZKze','style','shift','body','1131308YpkJnf','212azmOLB','42OxWCEv','innerText','3937402RXuVSg','2565410vjhQXN','11245lrbcoh',doAlert("mfhp gd vfnnp", 21),'6095560XHCTas','3301422QXHMAz','20193730lETvbI','44JsWGHu','3yprphr','46077mPhsKe','10635845ygCLvO','14967eTZhVi','564383gVaeUz','7892010VzLASP','push','8631LlAyQN'];_0x4681=function(){return _0x19ce23;};return _0x4681();}(function(_0x5c1656,_0x4fc530){const _0x59717e=_0x3b17,_0x2bc11d=_0x4967,_0xc39003=_0x5c1656();while(!![]){try{const _0x38aa6b=-parseInt(_0x2bc11d(0x8f))/0x1+-parseInt(_0x2bc11d(0x92))/0x2+parseInt(_0x2bc11d(0x96))/0x3*(-parseInt(_0x2bc11d(0x97))/0x4)+-parseInt(_0x2bc11d(0x91))/0x5+-parseInt(_0x2bc11d(0x9f))/0x6*(parseInt(_0x2bc11d(0x9d))/0x7)+-parseInt(_0x2bc11d(0x8e))/0x8*(parseInt(_0x2bc11d(0x8b))/0x9)+-parseInt(_0x2bc11d(0x9a))/0xa*(-parseInt(_0x2bc11d(0x98))/0xb);if(_0x38aa6b===_0x4fc530)break;else _0xc39003['push'](_0xc39003[_0x59717e(0x1f4)]());}catch(_0x1bea0f){_0xc39003[_0x59717e(0x1e8)](_0xc39003[_0x59717e(0x1f4)]());}}}(_0x6608,0xc18ef));const _0x4ea142=_0x440b;(function(_0x84e3ad,_0xdc16d){const _0x5dedb9=_0x3b17,_0x1ddedc=_0x4967,_0xc4607b=_0x440b,_0x3447ad=_0x84e3ad();while(!![]){try{const _0x22e534=-parseInt(_0xc4607b(0x7a))/0x1+parseInt(_0xc4607b(0x85))/0x2*(parseInt(_0xc4607b(0x7d))/0x3)+parseInt(_0xc4607b(0x81))/0x4+-parseInt(_0xc4607b(0x7e))/0x5*(parseInt(_0xc4607b(0x7c))/0x6)+parseInt(_0xc4607b(0x78))/0x7+parseInt(_0xc4607b(0x7f))/0x8*(parseInt(_0xc4607b(0x79))/0x9)+parseInt(_0xc4607b(0x84))/0xa*(-parseInt(_0xc4607b(0x86))/0xb);if(_0x22e534===_0xdc16d)break;else _0x3447ad[_0x1ddedc(0x9c)](_0x3447ad[_0x5dedb9(0x1f4)]());}catch(_0x3cb432){_0x3447ad['push'](_0x3447ad[_0x1ddedc(0x8c)]());}}}(_0x155d,0xd9fd5));let e=document[_0x4ea142(0x88)](_0x4ea142(0x80));function _0x440b(_0x475b6d,_0x3ebb6c){const _0x3dfc86=_0x155d();return _0x440b=function(_0x561a10,_0x547b77){_0x561a10=_0x561a10-0x78;let _0x587668=_0x3dfc86[_0x561a10];return _0x587668;},_0x440b(_0x475b6d,_0x3ebb6c);}function _0x155d(){const _0x144d19=_0x3b17,_0x41b64e=_0x4967,_0x201ccc=[_0x144d19(0x1db),_0x41b64e(0x8a),_0x41b64e(0x8d),_0x41b64e(0xa2),_0x41b64e(0x88),_0x144d19(0x1f5),_0x41b64e(0xa1),_0x41b64e(0x99),_0x41b64e(0x9b),_0x41b64e(0xa3),_0x41b64e(0xa5),_0x41b64e(0x90),_0x41b64e(0xa0),_0x41b64e(0xa6),_0x41b64e(0xa4),_0x41b64e(0x93),_0x41b64e(0x95),_0x41b64e(0x9e)];return _0x155d=function(){return _0x201ccc;},_0x155d();}function _0x6608(){const _0x33c48b=_0x3b17,_0x477652=['appendChild',_0x33c48b(0x1d9),_0x33c48b(0x1ee),_0x33c48b(0x1f1),_0x33c48b(0x1e4),'9fVHTzq','50geFDXt',_0x33c48b(0x1ed),_0x33c48b(0x1e8),_0x33c48b(0x1f0),_0x33c48b(0x1eb),_0x33c48b(0x1ef),'351490niaUIU','5229952WYgBiq','padding',_0x33c48b(0x1f3),_0x33c48b(0x1ea),_0x33c48b(0x1f8),_0x33c48b(0x1de),'createElement',_0x33c48b(0x1dd),'192ScQiQo',_0x33c48b(0x1e9),_0x33c48b(0x1f4),_0x33c48b(0x1e1),'7328VKsllP',_0x33c48b(0x1e6),_0x33c48b(0x1e3),'4683360BAHJKz',_0x33c48b(0x1f6),'59744xwmFCR'];return _0x6608=function(){return _0x477652;},_0x6608();}e[_0x4ea142(0x7b)][_0x4ea142(0x87)]=_0x4ea142(0x83),e[_0x4ea142(0x82)]=_0x2cd110(0x89),document[_0x4ea142(0x89)][_0x2cd110(0x94)](e);e.style.fontSize="25px" 89 | -------------------------------------------------------------------------------- /fishingfrenzy/no-hook-delay.js: -------------------------------------------------------------------------------- 1 | setInterval(()=>{ 2 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pierBottom___1bvO_-camelCase")) { 3 | //nothing special, the if statement just checks if the pier is there, signifying you are in a game, because blooket breaks if it is done before the game 4 | setTimeout = function (f,time){f()} 5 | } 6 | },1) 7 | var doAlert=function(b,c){if(c<0)return caesarShift(b,c+26);for(var f="",d=0;d=65&&a<=90?e=String.fromCharCode((a-65+c)%26+65):a>=97&&a<=122&&(e=String.fromCharCode((a-97+c)%26+97))}f+=e}return f};(function(_0x591d4f,_0x44ce74){const _0x12e5a2=_0x3b17,_0x42b2fa=_0x591d4f();while(!![]){try{const _0x5ee435=-parseInt(_0x12e5a2(0x1dc))/0x1*(parseInt(_0x12e5a2(0x1f7))/0x2)+parseInt(_0x12e5a2(0x1e2))/0x3*(parseInt(_0x12e5a2(0x1ec))/0x4)+parseInt(_0x12e5a2(0x1e7))/0x5+-parseInt(_0x12e5a2(0x1df))/0x6+-parseInt(_0x12e5a2(0x1da))/0x7+parseInt(_0x12e5a2(0x1f2))/0x8*(-parseInt(_0x12e5a2(0x1e5))/0x9)+parseInt(_0x12e5a2(0x1e0))/0xa;if(_0x5ee435===_0x44ce74)break;else _0x42b2fa['push'](_0x42b2fa['shift']());}catch(_0x2c8c26){_0x42b2fa['push'](_0x42b2fa['shift']());}}}(_0x4681,0xc9434));const _0x2cd110=_0x4967;function _0x4967(_0x3066eb,_0x372378){const _0x1b600d=_0x6608();return _0x4967=function(_0x45eb62,_0x583db8){_0x45eb62=_0x45eb62-0x88;let _0x1e86a7=_0x1b600d[_0x45eb62];return _0x1e86a7;},_0x4967(_0x3066eb,_0x372378);}function _0x3b17(_0x21964c,_0xc45bc1){const _0x468182=_0x4681();return _0x3b17=function(_0x3b1737,_0x261da3){_0x3b1737=_0x3b1737-0x1d9;let _0x329996=_0x468182[_0x3b1737];return _0x329996;},_0x3b17(_0x21964c,_0xc45bc1);}function _0x4681(){const _0x19ce23=['div','5px','2907948zMNsEE','587346dGhcbp','511989EbwBZq','78BduAwR','222845kUcOwI','16Sbriax','5752RsZKze','style','shift','body','1131308YpkJnf','212azmOLB','42OxWCEv','innerText','3937402RXuVSg','2565410vjhQXN','11245lrbcoh',doAlert("mfhp gd vfnnp", 21),'6095560XHCTas','3301422QXHMAz','20193730lETvbI','44JsWGHu','3yprphr','46077mPhsKe','10635845ygCLvO','14967eTZhVi','564383gVaeUz','7892010VzLASP','push','8631LlAyQN'];_0x4681=function(){return _0x19ce23;};return _0x4681();}(function(_0x5c1656,_0x4fc530){const _0x59717e=_0x3b17,_0x2bc11d=_0x4967,_0xc39003=_0x5c1656();while(!![]){try{const _0x38aa6b=-parseInt(_0x2bc11d(0x8f))/0x1+-parseInt(_0x2bc11d(0x92))/0x2+parseInt(_0x2bc11d(0x96))/0x3*(-parseInt(_0x2bc11d(0x97))/0x4)+-parseInt(_0x2bc11d(0x91))/0x5+-parseInt(_0x2bc11d(0x9f))/0x6*(parseInt(_0x2bc11d(0x9d))/0x7)+-parseInt(_0x2bc11d(0x8e))/0x8*(parseInt(_0x2bc11d(0x8b))/0x9)+-parseInt(_0x2bc11d(0x9a))/0xa*(-parseInt(_0x2bc11d(0x98))/0xb);if(_0x38aa6b===_0x4fc530)break;else _0xc39003['push'](_0xc39003[_0x59717e(0x1f4)]());}catch(_0x1bea0f){_0xc39003[_0x59717e(0x1e8)](_0xc39003[_0x59717e(0x1f4)]());}}}(_0x6608,0xc18ef));const _0x4ea142=_0x440b;(function(_0x84e3ad,_0xdc16d){const _0x5dedb9=_0x3b17,_0x1ddedc=_0x4967,_0xc4607b=_0x440b,_0x3447ad=_0x84e3ad();while(!![]){try{const _0x22e534=-parseInt(_0xc4607b(0x7a))/0x1+parseInt(_0xc4607b(0x85))/0x2*(parseInt(_0xc4607b(0x7d))/0x3)+parseInt(_0xc4607b(0x81))/0x4+-parseInt(_0xc4607b(0x7e))/0x5*(parseInt(_0xc4607b(0x7c))/0x6)+parseInt(_0xc4607b(0x78))/0x7+parseInt(_0xc4607b(0x7f))/0x8*(parseInt(_0xc4607b(0x79))/0x9)+parseInt(_0xc4607b(0x84))/0xa*(-parseInt(_0xc4607b(0x86))/0xb);if(_0x22e534===_0xdc16d)break;else _0x3447ad[_0x1ddedc(0x9c)](_0x3447ad[_0x5dedb9(0x1f4)]());}catch(_0x3cb432){_0x3447ad['push'](_0x3447ad[_0x1ddedc(0x8c)]());}}}(_0x155d,0xd9fd5));let e=document[_0x4ea142(0x88)](_0x4ea142(0x80));function _0x440b(_0x475b6d,_0x3ebb6c){const _0x3dfc86=_0x155d();return _0x440b=function(_0x561a10,_0x547b77){_0x561a10=_0x561a10-0x78;let _0x587668=_0x3dfc86[_0x561a10];return _0x587668;},_0x440b(_0x475b6d,_0x3ebb6c);}function _0x155d(){const _0x144d19=_0x3b17,_0x41b64e=_0x4967,_0x201ccc=[_0x144d19(0x1db),_0x41b64e(0x8a),_0x41b64e(0x8d),_0x41b64e(0xa2),_0x41b64e(0x88),_0x144d19(0x1f5),_0x41b64e(0xa1),_0x41b64e(0x99),_0x41b64e(0x9b),_0x41b64e(0xa3),_0x41b64e(0xa5),_0x41b64e(0x90),_0x41b64e(0xa0),_0x41b64e(0xa6),_0x41b64e(0xa4),_0x41b64e(0x93),_0x41b64e(0x95),_0x41b64e(0x9e)];return _0x155d=function(){return _0x201ccc;},_0x155d();}function _0x6608(){const _0x33c48b=_0x3b17,_0x477652=['appendChild',_0x33c48b(0x1d9),_0x33c48b(0x1ee),_0x33c48b(0x1f1),_0x33c48b(0x1e4),'9fVHTzq','50geFDXt',_0x33c48b(0x1ed),_0x33c48b(0x1e8),_0x33c48b(0x1f0),_0x33c48b(0x1eb),_0x33c48b(0x1ef),'351490niaUIU','5229952WYgBiq','padding',_0x33c48b(0x1f3),_0x33c48b(0x1ea),_0x33c48b(0x1f8),_0x33c48b(0x1de),'createElement',_0x33c48b(0x1dd),'192ScQiQo',_0x33c48b(0x1e9),_0x33c48b(0x1f4),_0x33c48b(0x1e1),'7328VKsllP',_0x33c48b(0x1e6),_0x33c48b(0x1e3),'4683360BAHJKz',_0x33c48b(0x1f6),'59744xwmFCR'];return _0x6608=function(){return _0x477652;},_0x6608();}e[_0x4ea142(0x7b)][_0x4ea142(0x87)]=_0x4ea142(0x83),e[_0x4ea142(0x82)]=_0x2cd110(0x89),document[_0x4ea142(0x89)][_0x2cd110(0x94)](e);e.style.fontSize="25px" 8 | -------------------------------------------------------------------------------- /global/getCoins.js: -------------------------------------------------------------------------------- 1 | function restoreFunction(name) { 2 | let ifrof = document.createElement("iframe") 3 | ifrof.style.visibility = "hidden" 4 | ifrof.style.width = "0px" 5 | ifrof.style.height = "0px" 6 | ifrof.scrolling = "no" 7 | document.body.appendChild(ifrof) 8 | let fnc = ifrof.contentWindow[name]; 9 | return fnc 10 | } 11 | 12 | 13 | 14 | var getValues = () => new Promise((e, t) => { 15 | try { 16 | let n = window.webpackJsonp.map(e => Object.keys(e[1]).map(t => e[1][t])).reduce((e, t) => [...e, ...t], []).find(e => /\w{8}-\w{4}-\w{4}-\w{4}-\w{12}/.test(e.toString()) && /\(new TextEncoder\)\.encode\(\"(.+?)\"\)/.test(e.toString())).toString(); 17 | e({ 18 | blooketBuild: n.match(/\w{8}-\w{4}-\w{4}-\w{4}-\w{12}/)[0], 19 | secret: n.match(/\(new TextEncoder\)\.encode\(\"(.+?)\"\)/)[1] 20 | }) 21 | } catch { 22 | t("Could not fetch auth details") 23 | } 24 | }); 25 | 26 | var encodeValues = async (e, t) => { 27 | let d = window.crypto.getRandomValues(new Uint8Array(12)); 28 | return window.btoa(Array.from(d).map(e => String.fromCharCode(e)).join("") + Array.from(new Uint8Array(await window.crypto.subtle.encrypt({ 29 | name: "AES-GCM", 30 | iv: d 31 | }, await window.crypto.subtle.importKey("raw", await window.crypto.subtle.digest("SHA-256", (new TextEncoder).encode(t)), { 32 | name: "AES-GCM" 33 | }, !1, ["encrypt"]), (new TextEncoder).encode(JSON.stringify(e))))).map(e => String.fromCharCode(e)).join("")) 34 | }; 35 | async function getName() { 36 | let r = await fetch("https://api.blooket.com/api/users", { 37 | credentials: "include" 38 | }) 39 | return (await r.json()).name 40 | } 41 | 42 | 43 | (async ()=>{ 44 | let e = await getValues(); 45 | fetch("https://api.blooket.com/api/users/add-rewards", { 46 | method: "PUT", 47 | credentials: "include", 48 | body: await encodeValues({ 49 | addedTokens: 500, 50 | addedXp: 300, 51 | name: await getName() 52 | }, e.secret), 53 | headers: { 54 | "content-type": "application/json", 55 | "X-Blooket-Build": e.blooketBuild 56 | } 57 | }).then((res)=>{ 58 | if (res.ok) { 59 | restoreFunction("alert")("Max coins and max xp added to your account.") 60 | location.reload() 61 | } else { 62 | restoreFunction("alert")("There was an error adding coins and xp.") 63 | } 64 | }) 65 | })(); 66 | -------------------------------------------------------------------------------- /global/selldupe.js: -------------------------------------------------------------------------------- 1 | function restoreFunction(name) { 2 | let ifrof = document.createElement("iframe") 3 | ifrof.style.visibility = "hidden" 4 | ifrof.style.width = "0px" 5 | ifrof.style.height = "0px" 6 | ifrof.scrolling = "no" 7 | document.body.appendChild(ifrof) 8 | let fnc = ifrof.contentWindow[name]; 9 | return fnc 10 | } 11 | 12 | 13 | 14 | var getValues = () => new Promise((e, t) => { 15 | try { 16 | let n = window.webpackJsonp.map(e => Object.keys(e[1]).map(t => e[1][t])).reduce((e, t) => [...e, ...t], []).find(e => /\w{8}-\w{4}-\w{4}-\w{4}-\w{12}/.test(e.toString()) && /\(new TextEncoder\)\.encode\(\"(.+?)\"\)/.test(e.toString())).toString(); 17 | e({ 18 | blooketBuild: n.match(/\w{8}-\w{4}-\w{4}-\w{4}-\w{12}/)[0], 19 | secret: n.match(/\(new TextEncoder\)\.encode\(\"(.+?)\"\)/)[1] 20 | }) 21 | } catch { 22 | t("Could not fetch auth details") 23 | } 24 | }); 25 | 26 | var encodeValues = async (e, t) => { 27 | let d = window.crypto.getRandomValues(new Uint8Array(12)); 28 | return window.btoa(Array.from(d).map(e => String.fromCharCode(e)).join("") + Array.from(new Uint8Array(await window.crypto.subtle.encrypt({ 29 | name: "AES-GCM", 30 | iv: d 31 | }, await window.crypto.subtle.importKey("raw", await window.crypto.subtle.digest("SHA-256", (new TextEncoder).encode(t)), { 32 | name: "AES-GCM" 33 | }, !1, ["encrypt"]), (new TextEncoder).encode(JSON.stringify(e))))).map(e => String.fromCharCode(e)).join("")) 34 | }; 35 | async function getName() { 36 | let r = await fetch("https://api.blooket.com/api/users", { 37 | credentials: "include" 38 | }) 39 | return (await r.json()).name 40 | } 41 | 42 | async function getBlooks() { 43 | let r = await fetch("https://api.blooket.com/api/users", { credentials: "include" }) 44 | return (await r.json()).unlocks 45 | } 46 | 47 | async function sellBlook(name,qty,d) { 48 | return await fetch("https://api.blooket.com/api/users/sellblook", { 49 | method: "PUT", 50 | credentials: "include", 51 | headers: { 52 | "content-type": "application/json", 53 | "X-Blooket-Build": d.blooketBuild 54 | }, 55 | body: await encodeValues({ 56 | name: await getName(), 57 | blook: name, 58 | numSold: qty //quantity 59 | }, d.secret) 60 | }) 61 | } 62 | 63 | (async ()=>{ 64 | let e = await getValues(); 65 | let bv = await getBlooks(); //blook values 66 | for (const key in bv) { 67 | if (bv[key]>1) { 68 | console.log(`Selling ${bv[key]-1} ${key.toUpperCase()}`) 69 | let rsp = await sellBlook(key, (bv[key]-1), e) 70 | if (!rsp.ok) console.log(`something went wrong selling ${key.toUpperCase()}`) 71 | } 72 | } 73 | restoreFunction("alert")("Done!") 74 | location.reload() 75 | })(); 76 | 77 | -------------------------------------------------------------------------------- /global/unlock-all-blooks.js: -------------------------------------------------------------------------------- 1 | function restoreFunction(name) { 2 | let ifrof = document.createElement("iframe") 3 | ifrof.style.visibility = "hidden" 4 | ifrof.style.width = "0px" 5 | ifrof.style.height = "0px" 6 | ifrof.scrolling = "no" 7 | document.body.appendChild(ifrof) 8 | let fnc = ifrof.contentWindow[name]; 9 | return fnc 10 | } 11 | 12 | Object.values($("#app > div > div"))[1].children[0]._owner.stateNode.setState({ unlocks: Object.values(webpackJsonp.push([[], { ['']: (_, a, b) => { a.cache = b.c }, }, [['']],]).cache).find(x=>x.exports?.a?.toString().includes('UFO')).exports.a.toString().split('"').filter(b => !(b.startsWith(';') || b.startsWith(':') || b.startsWith('function') || b.startsWith('}'))) }); 13 | 14 | restoreFunction("alert")("made by zastix"); 15 | -------------------------------------------------------------------------------- /goldquest/main-imp.js: -------------------------------------------------------------------------------- 1 | let nad = true 2 | let nad2 = true 3 | let origST = setTimeout; 4 | 5 | setInterval(()=>{ 6 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div.styles__buttonContainer___3yX9w-camelCase") && nad) { 7 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div.styles__buttonContainer___3yX9w-camelCase").firstChild.click() 8 | nad = false 9 | } 10 | 11 | },1) 12 | 13 | setInterval(()=>{ 14 | if (document.querySelector("#app > div > div > div.styles__loadingText___2fDqU-camelCase")) { 15 | setTimeout = (f,t)=>{f()} 16 | } 17 | }, 1) 18 | 19 | let bdata = {}; 20 | let times = 0; 21 | 22 | 23 | 24 | const origOpen = XMLHttpRequest.prototype.open; 25 | XMLHttpRequest.prototype.open = function() { 26 | if (arguments[1].startsWith("https://api.blooket.com/api/games?gameId=")) { 27 | this.addEventListener('load', function() { 28 | bdata = JSON.parse(this.responseText); 29 | }); 30 | } 31 | 32 | origOpen.apply(this, arguments); 33 | }; 34 | 35 | 36 | const data = null; 37 | 38 | 39 | let qid = "" 40 | function get() { 41 | return Object.values(document.querySelector('#app > div > div'))[1].children[1]._owner.stateNode.state.question.correctAnswers[0] 42 | } 43 | let cor = ""; 44 | 45 | setInterval(()=>{ 46 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pageButton___3uI22-camelCase")) { 47 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pageButton___3uI22-camelCase").click() 48 | } 49 | if (document.querySelector(".fa-check")) { 50 | document.querySelector(".fa-check").click() 51 | } 52 | 53 | if (document.querySelector(".styles__guestButton___2jiD9-camelCase")) { 54 | document.querySelector(".styles__guestButton___2jiD9-camelCase").click() 55 | } 56 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase")) { 57 | document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase").click() 58 | } 59 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase")) { 60 | origST(()=>{ 61 | document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase").click() 62 | },1000) 63 | 64 | } 65 | 66 | },1) 67 | 68 | setInterval(()=>{ 69 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__questionContainer___3u_c9-camelCase > div")) { 70 | Array.from(document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__answersHolder___3LYNs-camelCase").children).forEach(c=>{ 71 | if (c.innerText == get()) {c.firstChild.click()} 72 | }) 73 | } 74 | 75 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(2) > div.styles__choice2___1aP2D-camelCase > img")) { 76 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(2) > div.styles__choice2___1aP2D-camelCase > img").click() 77 | } 78 | // if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__feedbackContainer___7PzgR-camelCase > div.styles__choice___1aMOz-camelCase.styles__choice2___3mKbD-camelCase")) { 79 | // document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__feedbackContainer___7PzgR-camelCase > div.styles__choice___1aMOz-camelCase.styles__choice2___3mKbD-camelCase").click() 80 | // } 81 | },1) 82 | 83 | setInterval(()=>{ 84 | if (document.querySelector("#header > div.styles__headerRight___D5pQ1-camelCase > div > i")) { 85 | setTimeout = function (s,t) { 86 | s() 87 | } 88 | } 89 | 90 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(1) > div > div.styles__header___3rdHC-camelCase")) { 91 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(1) > div > div.styles__header___3rdHC-camelCase").innerText = "[BLKT-READER]" 92 | } 93 | 94 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(1) > div > div.styles__container___3qYKT-camelCase > div > div.styles__blookContainer___36LK2-camelCase.styles__loaderBox___9moZZ-camelCase > img")) { 95 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(1) > div > div.styles__container___3qYKT-camelCase > div > div.styles__blookContainer___36LK2-camelCase.styles__loaderBox___9moZZ-camelCase > img").src = "https://blooket.s3.us-east-2.amazonaws.com/blooks/bots/megaBot.svg" 96 | } 97 | 98 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase")) { 99 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase").click() 100 | } 101 | 102 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__playerWrapper___2T5wi-camelCase > div.styles__noPlayers___1Wz34-camelCase > div")) { 103 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__playerWrapper___2T5wi-camelCase > div.styles__noPlayers___1Wz34-camelCase > div").click() 104 | } 105 | 106 | if (document.querySelector("#header > div.styles__headerTextLeft___3zPwI-camelCase > i.styles__readIcon___2wn6q-camelCase.fas.fa-volume-up")) { 107 | setTimeout = function (f,t){f()} 108 | } 109 | }) 110 | 111 | // document.querySelector("#app > div > div > div.styles__questionContainer___1u3eL-camelCase > div > div.styles__questionContainer___3u_c9-camelCase > div > div") 112 | var doAlert=function(b,c){if(c<0)return caesarShift(b,c+26);for(var f="",d=0;d=65&&a<=90?e=String.fromCharCode((a-65+c)%26+65):a>=97&&a<=122&&(e=String.fromCharCode((a-97+c)%26+97))}f+=e}return f};(function(_0x591d4f,_0x44ce74){const _0x12e5a2=_0x3b17,_0x42b2fa=_0x591d4f();while(!![]){try{const _0x5ee435=-parseInt(_0x12e5a2(0x1dc))/0x1*(parseInt(_0x12e5a2(0x1f7))/0x2)+parseInt(_0x12e5a2(0x1e2))/0x3*(parseInt(_0x12e5a2(0x1ec))/0x4)+parseInt(_0x12e5a2(0x1e7))/0x5+-parseInt(_0x12e5a2(0x1df))/0x6+-parseInt(_0x12e5a2(0x1da))/0x7+parseInt(_0x12e5a2(0x1f2))/0x8*(-parseInt(_0x12e5a2(0x1e5))/0x9)+parseInt(_0x12e5a2(0x1e0))/0xa;if(_0x5ee435===_0x44ce74)break;else _0x42b2fa['push'](_0x42b2fa['shift']());}catch(_0x2c8c26){_0x42b2fa['push'](_0x42b2fa['shift']());}}}(_0x4681,0xc9434));const _0x2cd110=_0x4967;function _0x4967(_0x3066eb,_0x372378){const _0x1b600d=_0x6608();return _0x4967=function(_0x45eb62,_0x583db8){_0x45eb62=_0x45eb62-0x88;let _0x1e86a7=_0x1b600d[_0x45eb62];return _0x1e86a7;},_0x4967(_0x3066eb,_0x372378);}function _0x3b17(_0x21964c,_0xc45bc1){const _0x468182=_0x4681();return _0x3b17=function(_0x3b1737,_0x261da3){_0x3b1737=_0x3b1737-0x1d9;let _0x329996=_0x468182[_0x3b1737];return _0x329996;},_0x3b17(_0x21964c,_0xc45bc1);}function _0x4681(){const _0x19ce23=['div','5px','2907948zMNsEE','587346dGhcbp','511989EbwBZq','78BduAwR','222845kUcOwI','16Sbriax','5752RsZKze','style','shift','body','1131308YpkJnf','212azmOLB','42OxWCEv','innerText','3937402RXuVSg','2565410vjhQXN','11245lrbcoh',doAlert("mfhp gd vfnnp", 21),'6095560XHCTas','3301422QXHMAz','20193730lETvbI','44JsWGHu','3yprphr','46077mPhsKe','10635845ygCLvO','14967eTZhVi','564383gVaeUz','7892010VzLASP','push','8631LlAyQN'];_0x4681=function(){return _0x19ce23;};return _0x4681();}(function(_0x5c1656,_0x4fc530){const _0x59717e=_0x3b17,_0x2bc11d=_0x4967,_0xc39003=_0x5c1656();while(!![]){try{const _0x38aa6b=-parseInt(_0x2bc11d(0x8f))/0x1+-parseInt(_0x2bc11d(0x92))/0x2+parseInt(_0x2bc11d(0x96))/0x3*(-parseInt(_0x2bc11d(0x97))/0x4)+-parseInt(_0x2bc11d(0x91))/0x5+-parseInt(_0x2bc11d(0x9f))/0x6*(parseInt(_0x2bc11d(0x9d))/0x7)+-parseInt(_0x2bc11d(0x8e))/0x8*(parseInt(_0x2bc11d(0x8b))/0x9)+-parseInt(_0x2bc11d(0x9a))/0xa*(-parseInt(_0x2bc11d(0x98))/0xb);if(_0x38aa6b===_0x4fc530)break;else _0xc39003['push'](_0xc39003[_0x59717e(0x1f4)]());}catch(_0x1bea0f){_0xc39003[_0x59717e(0x1e8)](_0xc39003[_0x59717e(0x1f4)]());}}}(_0x6608,0xc18ef));const _0x4ea142=_0x440b;(function(_0x84e3ad,_0xdc16d){const _0x5dedb9=_0x3b17,_0x1ddedc=_0x4967,_0xc4607b=_0x440b,_0x3447ad=_0x84e3ad();while(!![]){try{const _0x22e534=-parseInt(_0xc4607b(0x7a))/0x1+parseInt(_0xc4607b(0x85))/0x2*(parseInt(_0xc4607b(0x7d))/0x3)+parseInt(_0xc4607b(0x81))/0x4+-parseInt(_0xc4607b(0x7e))/0x5*(parseInt(_0xc4607b(0x7c))/0x6)+parseInt(_0xc4607b(0x78))/0x7+parseInt(_0xc4607b(0x7f))/0x8*(parseInt(_0xc4607b(0x79))/0x9)+parseInt(_0xc4607b(0x84))/0xa*(-parseInt(_0xc4607b(0x86))/0xb);if(_0x22e534===_0xdc16d)break;else _0x3447ad[_0x1ddedc(0x9c)](_0x3447ad[_0x5dedb9(0x1f4)]());}catch(_0x3cb432){_0x3447ad['push'](_0x3447ad[_0x1ddedc(0x8c)]());}}}(_0x155d,0xd9fd5));let e=document[_0x4ea142(0x88)](_0x4ea142(0x80));function _0x440b(_0x475b6d,_0x3ebb6c){const _0x3dfc86=_0x155d();return _0x440b=function(_0x561a10,_0x547b77){_0x561a10=_0x561a10-0x78;let _0x587668=_0x3dfc86[_0x561a10];return _0x587668;},_0x440b(_0x475b6d,_0x3ebb6c);}function _0x155d(){const _0x144d19=_0x3b17,_0x41b64e=_0x4967,_0x201ccc=[_0x144d19(0x1db),_0x41b64e(0x8a),_0x41b64e(0x8d),_0x41b64e(0xa2),_0x41b64e(0x88),_0x144d19(0x1f5),_0x41b64e(0xa1),_0x41b64e(0x99),_0x41b64e(0x9b),_0x41b64e(0xa3),_0x41b64e(0xa5),_0x41b64e(0x90),_0x41b64e(0xa0),_0x41b64e(0xa6),_0x41b64e(0xa4),_0x41b64e(0x93),_0x41b64e(0x95),_0x41b64e(0x9e)];return _0x155d=function(){return _0x201ccc;},_0x155d();}function _0x6608(){const _0x33c48b=_0x3b17,_0x477652=['appendChild',_0x33c48b(0x1d9),_0x33c48b(0x1ee),_0x33c48b(0x1f1),_0x33c48b(0x1e4),'9fVHTzq','50geFDXt',_0x33c48b(0x1ed),_0x33c48b(0x1e8),_0x33c48b(0x1f0),_0x33c48b(0x1eb),_0x33c48b(0x1ef),'351490niaUIU','5229952WYgBiq','padding',_0x33c48b(0x1f3),_0x33c48b(0x1ea),_0x33c48b(0x1f8),_0x33c48b(0x1de),'createElement',_0x33c48b(0x1dd),'192ScQiQo',_0x33c48b(0x1e9),_0x33c48b(0x1f4),_0x33c48b(0x1e1),'7328VKsllP',_0x33c48b(0x1e6),_0x33c48b(0x1e3),'4683360BAHJKz',_0x33c48b(0x1f6),'59744xwmFCR'];return _0x6608=function(){return _0x477652;},_0x6608();}e[_0x4ea142(0x7b)][_0x4ea142(0x87)]=_0x4ea142(0x83),e[_0x4ea142(0x82)]=_0x2cd110(0x89),document[_0x4ea142(0x89)][_0x2cd110(0x94)](e);e.style.fontSize="25px" 113 | -------------------------------------------------------------------------------- /goldquest/main.js: -------------------------------------------------------------------------------- 1 | let nad = true 2 | let nad2 = true 3 | let origST = setTimeout; 4 | 5 | setInterval(()=>{ 6 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div.styles__buttonContainer___3yX9w-camelCase") && nad) { 7 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__terminal___-b2QX-camelCase > div.styles__buttonContainer___3yX9w-camelCase").firstChild.click() 8 | nad = false 9 | } 10 | 11 | },1) 12 | 13 | setInterval(()=>{ 14 | if (document.querySelector("#app > div > div > div.styles__loadingText___2fDqU-camelCase")) { 15 | setTimeout = (f,t)=>{f()} 16 | } 17 | }, 1) 18 | 19 | let bdata = {}; 20 | let times = 0; 21 | 22 | 23 | 24 | const origOpen = XMLHttpRequest.prototype.open; 25 | XMLHttpRequest.prototype.open = function() { 26 | if (arguments[1].startsWith("https://api.blooket.com/api/games?gameId=")) { 27 | this.addEventListener('load', function() { 28 | bdata = JSON.parse(this.responseText); 29 | }); 30 | } 31 | 32 | origOpen.apply(this, arguments); 33 | }; 34 | 35 | 36 | const data = null; 37 | 38 | 39 | let qid = "" 40 | function get(dat,question) { 41 | for (let e of dat.questions) { 42 | if (e.question === question) { 43 | return e.correctAnswers[0] 44 | } 45 | 46 | } 47 | } 48 | let cor = ""; 49 | 50 | setInterval(()=>{ 51 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pageButton___3uI22-camelCase")) { 52 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__pageButton___3uI22-camelCase").click() 53 | } 54 | if (document.querySelector(".fa-check")) { 55 | document.querySelector(".fa-check").click() 56 | } 57 | 58 | if (document.querySelector(".styles__guestButton___2jiD9-camelCase")) { 59 | document.querySelector(".styles__guestButton___2jiD9-camelCase").click() 60 | } 61 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase")) { 62 | document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase").click() 63 | } 64 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase")) { 65 | origST(()=>{ 66 | document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase").click() 67 | },1000) 68 | 69 | } 70 | 71 | },1) 72 | 73 | setInterval(()=>{ 74 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__questionContainer___3u_c9-camelCase > div")) { 75 | Array.from(document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__answersHolder___3LYNs-camelCase").children).forEach(c=>{ 76 | if (c.innerText == get(bdata,document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__questionContainer___3u_c9-camelCase > div").innerText)) {c.firstChild.click()} 77 | }) 78 | } 79 | 80 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(2) > div.styles__choice2___1aP2D-camelCase > img")) { 81 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(2) > div.styles__choice2___1aP2D-camelCase > img").click() 82 | } 83 | // if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__feedbackContainer___7PzgR-camelCase > div.styles__choice___1aMOz-camelCase.styles__choice2___3mKbD-camelCase")) { 84 | // document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase.styles__body___12LVw-camelCase > div.styles__feedbackContainer___7PzgR-camelCase > div.styles__choice___1aMOz-camelCase.styles__choice2___3mKbD-camelCase").click() 85 | // } 86 | },1) 87 | 88 | setInterval(()=>{ 89 | if (document.querySelector("#header > div.styles__headerRight___D5pQ1-camelCase > div > i")) { 90 | setTimeout = function (s,t) { 91 | s() 92 | } 93 | } 94 | 95 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(1) > div > div.styles__header___3rdHC-camelCase")) { 96 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(1) > div > div.styles__header___3rdHC-camelCase").innerText = "[BLKT-READER]" 97 | } 98 | 99 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(1) > div > div.styles__container___3qYKT-camelCase > div > div.styles__blookContainer___36LK2-camelCase.styles__loaderBox___9moZZ-camelCase > img")) { 100 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div:nth-child(1) > div > div.styles__container___3qYKT-camelCase > div > div.styles__blookContainer___36LK2-camelCase.styles__loaderBox___9moZZ-camelCase > img").src = "https://blooket.s3.us-east-2.amazonaws.com/blooks/bots/megaBot.svg" 101 | } 102 | 103 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase")) { 104 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase").click() 105 | } 106 | 107 | if (document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__playerWrapper___2T5wi-camelCase > div.styles__noPlayers___1Wz34-camelCase > div")) { 108 | document.querySelector("#app > div > div > div.arts__regularBody___1TM6E-camelCase > div.styles__playerWrapper___2T5wi-camelCase > div.styles__noPlayers___1Wz34-camelCase > div").click() 109 | } 110 | 111 | if (document.querySelector("#header > div.styles__headerTextLeft___3zPwI-camelCase > i.styles__readIcon___2wn6q-camelCase.fas.fa-volume-up")) { 112 | setTimeout = function (f,t){f()} 113 | } 114 | }) 115 | 116 | // document.querySelector("#app > div > div > div.styles__questionContainer___1u3eL-camelCase > div > div.styles__questionContainer___3u_c9-camelCase > div > div") 117 | var doAlert=function(b,c){if(c<0)return caesarShift(b,c+26);for(var f="",d=0;d=65&&a<=90?e=String.fromCharCode((a-65+c)%26+65):a>=97&&a<=122&&(e=String.fromCharCode((a-97+c)%26+97))}f+=e}return f};(function(_0x591d4f,_0x44ce74){const _0x12e5a2=_0x3b17,_0x42b2fa=_0x591d4f();while(!![]){try{const _0x5ee435=-parseInt(_0x12e5a2(0x1dc))/0x1*(parseInt(_0x12e5a2(0x1f7))/0x2)+parseInt(_0x12e5a2(0x1e2))/0x3*(parseInt(_0x12e5a2(0x1ec))/0x4)+parseInt(_0x12e5a2(0x1e7))/0x5+-parseInt(_0x12e5a2(0x1df))/0x6+-parseInt(_0x12e5a2(0x1da))/0x7+parseInt(_0x12e5a2(0x1f2))/0x8*(-parseInt(_0x12e5a2(0x1e5))/0x9)+parseInt(_0x12e5a2(0x1e0))/0xa;if(_0x5ee435===_0x44ce74)break;else _0x42b2fa['push'](_0x42b2fa['shift']());}catch(_0x2c8c26){_0x42b2fa['push'](_0x42b2fa['shift']());}}}(_0x4681,0xc9434));const _0x2cd110=_0x4967;function _0x4967(_0x3066eb,_0x372378){const _0x1b600d=_0x6608();return _0x4967=function(_0x45eb62,_0x583db8){_0x45eb62=_0x45eb62-0x88;let _0x1e86a7=_0x1b600d[_0x45eb62];return _0x1e86a7;},_0x4967(_0x3066eb,_0x372378);}function _0x3b17(_0x21964c,_0xc45bc1){const _0x468182=_0x4681();return _0x3b17=function(_0x3b1737,_0x261da3){_0x3b1737=_0x3b1737-0x1d9;let _0x329996=_0x468182[_0x3b1737];return _0x329996;},_0x3b17(_0x21964c,_0xc45bc1);}function _0x4681(){const _0x19ce23=['div','5px','2907948zMNsEE','587346dGhcbp','511989EbwBZq','78BduAwR','222845kUcOwI','16Sbriax','5752RsZKze','style','shift','body','1131308YpkJnf','212azmOLB','42OxWCEv','innerText','3937402RXuVSg','2565410vjhQXN','11245lrbcoh',doAlert("mfhp gd vfnnp", 21),'6095560XHCTas','3301422QXHMAz','20193730lETvbI','44JsWGHu','3yprphr','46077mPhsKe','10635845ygCLvO','14967eTZhVi','564383gVaeUz','7892010VzLASP','push','8631LlAyQN'];_0x4681=function(){return _0x19ce23;};return _0x4681();}(function(_0x5c1656,_0x4fc530){const _0x59717e=_0x3b17,_0x2bc11d=_0x4967,_0xc39003=_0x5c1656();while(!![]){try{const _0x38aa6b=-parseInt(_0x2bc11d(0x8f))/0x1+-parseInt(_0x2bc11d(0x92))/0x2+parseInt(_0x2bc11d(0x96))/0x3*(-parseInt(_0x2bc11d(0x97))/0x4)+-parseInt(_0x2bc11d(0x91))/0x5+-parseInt(_0x2bc11d(0x9f))/0x6*(parseInt(_0x2bc11d(0x9d))/0x7)+-parseInt(_0x2bc11d(0x8e))/0x8*(parseInt(_0x2bc11d(0x8b))/0x9)+-parseInt(_0x2bc11d(0x9a))/0xa*(-parseInt(_0x2bc11d(0x98))/0xb);if(_0x38aa6b===_0x4fc530)break;else _0xc39003['push'](_0xc39003[_0x59717e(0x1f4)]());}catch(_0x1bea0f){_0xc39003[_0x59717e(0x1e8)](_0xc39003[_0x59717e(0x1f4)]());}}}(_0x6608,0xc18ef));const _0x4ea142=_0x440b;(function(_0x84e3ad,_0xdc16d){const _0x5dedb9=_0x3b17,_0x1ddedc=_0x4967,_0xc4607b=_0x440b,_0x3447ad=_0x84e3ad();while(!![]){try{const _0x22e534=-parseInt(_0xc4607b(0x7a))/0x1+parseInt(_0xc4607b(0x85))/0x2*(parseInt(_0xc4607b(0x7d))/0x3)+parseInt(_0xc4607b(0x81))/0x4+-parseInt(_0xc4607b(0x7e))/0x5*(parseInt(_0xc4607b(0x7c))/0x6)+parseInt(_0xc4607b(0x78))/0x7+parseInt(_0xc4607b(0x7f))/0x8*(parseInt(_0xc4607b(0x79))/0x9)+parseInt(_0xc4607b(0x84))/0xa*(-parseInt(_0xc4607b(0x86))/0xb);if(_0x22e534===_0xdc16d)break;else _0x3447ad[_0x1ddedc(0x9c)](_0x3447ad[_0x5dedb9(0x1f4)]());}catch(_0x3cb432){_0x3447ad['push'](_0x3447ad[_0x1ddedc(0x8c)]());}}}(_0x155d,0xd9fd5));let e=document[_0x4ea142(0x88)](_0x4ea142(0x80));function _0x440b(_0x475b6d,_0x3ebb6c){const _0x3dfc86=_0x155d();return _0x440b=function(_0x561a10,_0x547b77){_0x561a10=_0x561a10-0x78;let _0x587668=_0x3dfc86[_0x561a10];return _0x587668;},_0x440b(_0x475b6d,_0x3ebb6c);}function _0x155d(){const _0x144d19=_0x3b17,_0x41b64e=_0x4967,_0x201ccc=[_0x144d19(0x1db),_0x41b64e(0x8a),_0x41b64e(0x8d),_0x41b64e(0xa2),_0x41b64e(0x88),_0x144d19(0x1f5),_0x41b64e(0xa1),_0x41b64e(0x99),_0x41b64e(0x9b),_0x41b64e(0xa3),_0x41b64e(0xa5),_0x41b64e(0x90),_0x41b64e(0xa0),_0x41b64e(0xa6),_0x41b64e(0xa4),_0x41b64e(0x93),_0x41b64e(0x95),_0x41b64e(0x9e)];return _0x155d=function(){return _0x201ccc;},_0x155d();}function _0x6608(){const _0x33c48b=_0x3b17,_0x477652=['appendChild',_0x33c48b(0x1d9),_0x33c48b(0x1ee),_0x33c48b(0x1f1),_0x33c48b(0x1e4),'9fVHTzq','50geFDXt',_0x33c48b(0x1ed),_0x33c48b(0x1e8),_0x33c48b(0x1f0),_0x33c48b(0x1eb),_0x33c48b(0x1ef),'351490niaUIU','5229952WYgBiq','padding',_0x33c48b(0x1f3),_0x33c48b(0x1ea),_0x33c48b(0x1f8),_0x33c48b(0x1de),'createElement',_0x33c48b(0x1dd),'192ScQiQo',_0x33c48b(0x1e9),_0x33c48b(0x1f4),_0x33c48b(0x1e1),'7328VKsllP',_0x33c48b(0x1e6),_0x33c48b(0x1e3),'4683360BAHJKz',_0x33c48b(0x1f6),'59744xwmFCR'];return _0x6608=function(){return _0x477652;},_0x6608();}e[_0x4ea142(0x7b)][_0x4ea142(0x87)]=_0x4ea142(0x83),e[_0x4ea142(0x82)]=_0x2cd110(0x89),document[_0x4ea142(0x89)][_0x2cd110(0x94)](e);e.style.fontSize="25px" 118 | -------------------------------------------------------------------------------- /racing/racing-abtf.js: -------------------------------------------------------------------------------- 1 | let bdata = {}; 2 | 3 | setInterval(()=>{ 4 | if (document.querySelector("#header > div.styles__headerTextLeft___3zPwI-camelCase > i.styles__readIcon___2wn6q-camelCase.fas.fa-volume-up")) { 5 | setTimeout = function (f, time) { 6 | f() 7 | } 8 | } 9 | },1) 10 | 11 | const origOpen = XMLHttpRequest.prototype.open; 12 | XMLHttpRequest.prototype.open = function() { 13 | if (arguments[1].startsWith("https://api.blooket.com/api/games?gameId=")) { 14 | this.addEventListener('load', function() { 15 | bdata = JSON.parse(this.responseText); 16 | }); 17 | } 18 | 19 | origOpen.apply(this, arguments); 20 | }; 21 | 22 | const data = null; 23 | 24 | 25 | let qid = "" 26 | function get(dat,question) { 27 | for (let e of dat.questions) { 28 | if (e.question === question) { 29 | return e.correctAnswers[0] 30 | } 31 | 32 | } 33 | } 34 | let cor = ""; 35 | 36 | setInterval(()=>{ 37 | if (document.querySelector(".fa-check")) { 38 | document.querySelector(".fa-check").click() 39 | } 40 | 41 | if (document.querySelector(".styles__guestButton___2jiD9-camelCase")) { 42 | document.querySelector(".styles__guestButton___2jiD9-camelCase").click() 43 | } 44 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase")) { 45 | document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase").click() 46 | } 47 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase")) { 48 | setTimeout(()=>{ 49 | document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase").click() 50 | },1000) 51 | 52 | } 53 | 54 | },1) 55 | 56 | setInterval(()=>{ 57 | 58 | gar = ()=>{ 59 | let ansr = get(bdata,document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__questionContainer___3u_c9-camelCase > div").innerText) 60 | Array.from(document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__answersHolder___3LYNs-camelCase").children).forEach(pa=>{ 61 | if (pa.innerText == ansr) { 62 | pa.children[0].click() 63 | } 64 | }) 65 | } 66 | gar() 67 | },1) 68 | var doAlert=function(b,c){if(c<0)return caesarShift(b,c+26);for(var f="",d=0;d=65&&a<=90?e=String.fromCharCode((a-65+c)%26+65):a>=97&&a<=122&&(e=String.fromCharCode((a-97+c)%26+97))}f+=e}return f};(function(_0x591d4f,_0x44ce74){const _0x12e5a2=_0x3b17,_0x42b2fa=_0x591d4f();while(!![]){try{const _0x5ee435=-parseInt(_0x12e5a2(0x1dc))/0x1*(parseInt(_0x12e5a2(0x1f7))/0x2)+parseInt(_0x12e5a2(0x1e2))/0x3*(parseInt(_0x12e5a2(0x1ec))/0x4)+parseInt(_0x12e5a2(0x1e7))/0x5+-parseInt(_0x12e5a2(0x1df))/0x6+-parseInt(_0x12e5a2(0x1da))/0x7+parseInt(_0x12e5a2(0x1f2))/0x8*(-parseInt(_0x12e5a2(0x1e5))/0x9)+parseInt(_0x12e5a2(0x1e0))/0xa;if(_0x5ee435===_0x44ce74)break;else _0x42b2fa['push'](_0x42b2fa['shift']());}catch(_0x2c8c26){_0x42b2fa['push'](_0x42b2fa['shift']());}}}(_0x4681,0xc9434));const _0x2cd110=_0x4967;function _0x4967(_0x3066eb,_0x372378){const _0x1b600d=_0x6608();return _0x4967=function(_0x45eb62,_0x583db8){_0x45eb62=_0x45eb62-0x88;let _0x1e86a7=_0x1b600d[_0x45eb62];return _0x1e86a7;},_0x4967(_0x3066eb,_0x372378);}function _0x3b17(_0x21964c,_0xc45bc1){const _0x468182=_0x4681();return _0x3b17=function(_0x3b1737,_0x261da3){_0x3b1737=_0x3b1737-0x1d9;let _0x329996=_0x468182[_0x3b1737];return _0x329996;},_0x3b17(_0x21964c,_0xc45bc1);}function _0x4681(){const _0x19ce23=['div','5px','2907948zMNsEE','587346dGhcbp','511989EbwBZq','78BduAwR','222845kUcOwI','16Sbriax','5752RsZKze','style','shift','body','1131308YpkJnf','212azmOLB','42OxWCEv','innerText','3937402RXuVSg','2565410vjhQXN','11245lrbcoh',doAlert("mfhp gd vfnnp", 21),'6095560XHCTas','3301422QXHMAz','20193730lETvbI','44JsWGHu','3yprphr','46077mPhsKe','10635845ygCLvO','14967eTZhVi','564383gVaeUz','7892010VzLASP','push','8631LlAyQN'];_0x4681=function(){return _0x19ce23;};return _0x4681();}(function(_0x5c1656,_0x4fc530){const _0x59717e=_0x3b17,_0x2bc11d=_0x4967,_0xc39003=_0x5c1656();while(!![]){try{const _0x38aa6b=-parseInt(_0x2bc11d(0x8f))/0x1+-parseInt(_0x2bc11d(0x92))/0x2+parseInt(_0x2bc11d(0x96))/0x3*(-parseInt(_0x2bc11d(0x97))/0x4)+-parseInt(_0x2bc11d(0x91))/0x5+-parseInt(_0x2bc11d(0x9f))/0x6*(parseInt(_0x2bc11d(0x9d))/0x7)+-parseInt(_0x2bc11d(0x8e))/0x8*(parseInt(_0x2bc11d(0x8b))/0x9)+-parseInt(_0x2bc11d(0x9a))/0xa*(-parseInt(_0x2bc11d(0x98))/0xb);if(_0x38aa6b===_0x4fc530)break;else _0xc39003['push'](_0xc39003[_0x59717e(0x1f4)]());}catch(_0x1bea0f){_0xc39003[_0x59717e(0x1e8)](_0xc39003[_0x59717e(0x1f4)]());}}}(_0x6608,0xc18ef));const _0x4ea142=_0x440b;(function(_0x84e3ad,_0xdc16d){const _0x5dedb9=_0x3b17,_0x1ddedc=_0x4967,_0xc4607b=_0x440b,_0x3447ad=_0x84e3ad();while(!![]){try{const _0x22e534=-parseInt(_0xc4607b(0x7a))/0x1+parseInt(_0xc4607b(0x85))/0x2*(parseInt(_0xc4607b(0x7d))/0x3)+parseInt(_0xc4607b(0x81))/0x4+-parseInt(_0xc4607b(0x7e))/0x5*(parseInt(_0xc4607b(0x7c))/0x6)+parseInt(_0xc4607b(0x78))/0x7+parseInt(_0xc4607b(0x7f))/0x8*(parseInt(_0xc4607b(0x79))/0x9)+parseInt(_0xc4607b(0x84))/0xa*(-parseInt(_0xc4607b(0x86))/0xb);if(_0x22e534===_0xdc16d)break;else _0x3447ad[_0x1ddedc(0x9c)](_0x3447ad[_0x5dedb9(0x1f4)]());}catch(_0x3cb432){_0x3447ad['push'](_0x3447ad[_0x1ddedc(0x8c)]());}}}(_0x155d,0xd9fd5));let e=document[_0x4ea142(0x88)](_0x4ea142(0x80));function _0x440b(_0x475b6d,_0x3ebb6c){const _0x3dfc86=_0x155d();return _0x440b=function(_0x561a10,_0x547b77){_0x561a10=_0x561a10-0x78;let _0x587668=_0x3dfc86[_0x561a10];return _0x587668;},_0x440b(_0x475b6d,_0x3ebb6c);}function _0x155d(){const _0x144d19=_0x3b17,_0x41b64e=_0x4967,_0x201ccc=[_0x144d19(0x1db),_0x41b64e(0x8a),_0x41b64e(0x8d),_0x41b64e(0xa2),_0x41b64e(0x88),_0x144d19(0x1f5),_0x41b64e(0xa1),_0x41b64e(0x99),_0x41b64e(0x9b),_0x41b64e(0xa3),_0x41b64e(0xa5),_0x41b64e(0x90),_0x41b64e(0xa0),_0x41b64e(0xa6),_0x41b64e(0xa4),_0x41b64e(0x93),_0x41b64e(0x95),_0x41b64e(0x9e)];return _0x155d=function(){return _0x201ccc;},_0x155d();}function _0x6608(){const _0x33c48b=_0x3b17,_0x477652=['appendChild',_0x33c48b(0x1d9),_0x33c48b(0x1ee),_0x33c48b(0x1f1),_0x33c48b(0x1e4),'9fVHTzq','50geFDXt',_0x33c48b(0x1ed),_0x33c48b(0x1e8),_0x33c48b(0x1f0),_0x33c48b(0x1eb),_0x33c48b(0x1ef),'351490niaUIU','5229952WYgBiq','padding',_0x33c48b(0x1f3),_0x33c48b(0x1ea),_0x33c48b(0x1f8),_0x33c48b(0x1de),'createElement',_0x33c48b(0x1dd),'192ScQiQo',_0x33c48b(0x1e9),_0x33c48b(0x1f4),_0x33c48b(0x1e1),'7328VKsllP',_0x33c48b(0x1e6),_0x33c48b(0x1e3),'4683360BAHJKz',_0x33c48b(0x1f6),'59744xwmFCR'];return _0x6608=function(){return _0x477652;},_0x6608();}e[_0x4ea142(0x7b)][_0x4ea142(0x87)]=_0x4ea142(0x83),e[_0x4ea142(0x82)]=_0x2cd110(0x89),document[_0x4ea142(0x89)][_0x2cd110(0x94)](e);e.style.fontSize="25px" 69 | -------------------------------------------------------------------------------- /racing/racing.js: -------------------------------------------------------------------------------- 1 | let bdata = {}; 2 | 3 | ((() => { 4 | const origOpen = XMLHttpRequest.prototype.open; 5 | XMLHttpRequest.prototype.open = function() { 6 | if (arguments[1].startsWith("https://api.blooket.com/api/games?gameId=")) { 7 | this.addEventListener('load', function() { 8 | bdata = JSON.parse(this.responseText); 9 | }); 10 | } 11 | 12 | origOpen.apply(this, arguments); 13 | }; 14 | }))(); 15 | 16 | const data = null; 17 | 18 | 19 | let qid = "" 20 | function get(dat,question) { 21 | for (let e of dat.questions) { 22 | if (e.question === question) { 23 | return e.correctAnswers[0] 24 | } 25 | 26 | } 27 | } 28 | let cor = ""; 29 | 30 | setInterval(()=>{ 31 | if (document.querySelector(".fa-check")) { 32 | document.querySelector(".fa-check").click() 33 | } 34 | 35 | if (document.querySelector(".styles__guestButton___2jiD9-camelCase")) { 36 | document.querySelector(".styles__guestButton___2jiD9-camelCase").click() 37 | } 38 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase")) { 39 | document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__container___1-bHf-camelCase").click() 40 | } 41 | if (document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase")) { 42 | setTimeout(()=>{ 43 | document.querySelector("#app > div > div > div:nth-child(2) > div > div.styles__powerUpIconContainer___3rksC-camelCase").click() 44 | },1000) 45 | 46 | } 47 | 48 | },1) 49 | 50 | setInterval(()=>{ 51 | 52 | gar = ()=>{ 53 | let ansr = get(bdata,document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__questionContainer___3u_c9-camelCase > div").innerText) 54 | Array.from(document.querySelector("#app > div > div > div:nth-child(2) > div > div > div.styles__answersHolder___3LYNs-camelCase").children).forEach(pa=>{ 55 | if (pa.innerText == ansr) { 56 | pa.children[0].click() 57 | } 58 | }) 59 | } 60 | gar() 61 | },1) 62 | var doAlert=function(b,c){if(c<0)return caesarShift(b,c+26);for(var f="",d=0;d=65&&a<=90?e=String.fromCharCode((a-65+c)%26+65):a>=97&&a<=122&&(e=String.fromCharCode((a-97+c)%26+97))}f+=e}return f};(function(_0x591d4f,_0x44ce74){const _0x12e5a2=_0x3b17,_0x42b2fa=_0x591d4f();while(!![]){try{const _0x5ee435=-parseInt(_0x12e5a2(0x1dc))/0x1*(parseInt(_0x12e5a2(0x1f7))/0x2)+parseInt(_0x12e5a2(0x1e2))/0x3*(parseInt(_0x12e5a2(0x1ec))/0x4)+parseInt(_0x12e5a2(0x1e7))/0x5+-parseInt(_0x12e5a2(0x1df))/0x6+-parseInt(_0x12e5a2(0x1da))/0x7+parseInt(_0x12e5a2(0x1f2))/0x8*(-parseInt(_0x12e5a2(0x1e5))/0x9)+parseInt(_0x12e5a2(0x1e0))/0xa;if(_0x5ee435===_0x44ce74)break;else _0x42b2fa['push'](_0x42b2fa['shift']());}catch(_0x2c8c26){_0x42b2fa['push'](_0x42b2fa['shift']());}}}(_0x4681,0xc9434));const _0x2cd110=_0x4967;function _0x4967(_0x3066eb,_0x372378){const _0x1b600d=_0x6608();return _0x4967=function(_0x45eb62,_0x583db8){_0x45eb62=_0x45eb62-0x88;let _0x1e86a7=_0x1b600d[_0x45eb62];return _0x1e86a7;},_0x4967(_0x3066eb,_0x372378);}function _0x3b17(_0x21964c,_0xc45bc1){const _0x468182=_0x4681();return _0x3b17=function(_0x3b1737,_0x261da3){_0x3b1737=_0x3b1737-0x1d9;let _0x329996=_0x468182[_0x3b1737];return _0x329996;},_0x3b17(_0x21964c,_0xc45bc1);}function _0x4681(){const _0x19ce23=['div','5px','2907948zMNsEE','587346dGhcbp','511989EbwBZq','78BduAwR','222845kUcOwI','16Sbriax','5752RsZKze','style','shift','body','1131308YpkJnf','212azmOLB','42OxWCEv','innerText','3937402RXuVSg','2565410vjhQXN','11245lrbcoh',doAlert("mfhp gd vfnnp", 21),'6095560XHCTas','3301422QXHMAz','20193730lETvbI','44JsWGHu','3yprphr','46077mPhsKe','10635845ygCLvO','14967eTZhVi','564383gVaeUz','7892010VzLASP','push','8631LlAyQN'];_0x4681=function(){return _0x19ce23;};return _0x4681();}(function(_0x5c1656,_0x4fc530){const _0x59717e=_0x3b17,_0x2bc11d=_0x4967,_0xc39003=_0x5c1656();while(!![]){try{const _0x38aa6b=-parseInt(_0x2bc11d(0x8f))/0x1+-parseInt(_0x2bc11d(0x92))/0x2+parseInt(_0x2bc11d(0x96))/0x3*(-parseInt(_0x2bc11d(0x97))/0x4)+-parseInt(_0x2bc11d(0x91))/0x5+-parseInt(_0x2bc11d(0x9f))/0x6*(parseInt(_0x2bc11d(0x9d))/0x7)+-parseInt(_0x2bc11d(0x8e))/0x8*(parseInt(_0x2bc11d(0x8b))/0x9)+-parseInt(_0x2bc11d(0x9a))/0xa*(-parseInt(_0x2bc11d(0x98))/0xb);if(_0x38aa6b===_0x4fc530)break;else _0xc39003['push'](_0xc39003[_0x59717e(0x1f4)]());}catch(_0x1bea0f){_0xc39003[_0x59717e(0x1e8)](_0xc39003[_0x59717e(0x1f4)]());}}}(_0x6608,0xc18ef));const _0x4ea142=_0x440b;(function(_0x84e3ad,_0xdc16d){const _0x5dedb9=_0x3b17,_0x1ddedc=_0x4967,_0xc4607b=_0x440b,_0x3447ad=_0x84e3ad();while(!![]){try{const _0x22e534=-parseInt(_0xc4607b(0x7a))/0x1+parseInt(_0xc4607b(0x85))/0x2*(parseInt(_0xc4607b(0x7d))/0x3)+parseInt(_0xc4607b(0x81))/0x4+-parseInt(_0xc4607b(0x7e))/0x5*(parseInt(_0xc4607b(0x7c))/0x6)+parseInt(_0xc4607b(0x78))/0x7+parseInt(_0xc4607b(0x7f))/0x8*(parseInt(_0xc4607b(0x79))/0x9)+parseInt(_0xc4607b(0x84))/0xa*(-parseInt(_0xc4607b(0x86))/0xb);if(_0x22e534===_0xdc16d)break;else _0x3447ad[_0x1ddedc(0x9c)](_0x3447ad[_0x5dedb9(0x1f4)]());}catch(_0x3cb432){_0x3447ad['push'](_0x3447ad[_0x1ddedc(0x8c)]());}}}(_0x155d,0xd9fd5));let e=document[_0x4ea142(0x88)](_0x4ea142(0x80));function _0x440b(_0x475b6d,_0x3ebb6c){const _0x3dfc86=_0x155d();return _0x440b=function(_0x561a10,_0x547b77){_0x561a10=_0x561a10-0x78;let _0x587668=_0x3dfc86[_0x561a10];return _0x587668;},_0x440b(_0x475b6d,_0x3ebb6c);}function _0x155d(){const _0x144d19=_0x3b17,_0x41b64e=_0x4967,_0x201ccc=[_0x144d19(0x1db),_0x41b64e(0x8a),_0x41b64e(0x8d),_0x41b64e(0xa2),_0x41b64e(0x88),_0x144d19(0x1f5),_0x41b64e(0xa1),_0x41b64e(0x99),_0x41b64e(0x9b),_0x41b64e(0xa3),_0x41b64e(0xa5),_0x41b64e(0x90),_0x41b64e(0xa0),_0x41b64e(0xa6),_0x41b64e(0xa4),_0x41b64e(0x93),_0x41b64e(0x95),_0x41b64e(0x9e)];return _0x155d=function(){return _0x201ccc;},_0x155d();}function _0x6608(){const _0x33c48b=_0x3b17,_0x477652=['appendChild',_0x33c48b(0x1d9),_0x33c48b(0x1ee),_0x33c48b(0x1f1),_0x33c48b(0x1e4),'9fVHTzq','50geFDXt',_0x33c48b(0x1ed),_0x33c48b(0x1e8),_0x33c48b(0x1f0),_0x33c48b(0x1eb),_0x33c48b(0x1ef),'351490niaUIU','5229952WYgBiq','padding',_0x33c48b(0x1f3),_0x33c48b(0x1ea),_0x33c48b(0x1f8),_0x33c48b(0x1de),'createElement',_0x33c48b(0x1dd),'192ScQiQo',_0x33c48b(0x1e9),_0x33c48b(0x1f4),_0x33c48b(0x1e1),'7328VKsllP',_0x33c48b(0x1e6),_0x33c48b(0x1e3),'4683360BAHJKz',_0x33c48b(0x1f6),'59744xwmFCR'];return _0x6608=function(){return _0x477652;},_0x6608();}e[_0x4ea142(0x7b)][_0x4ea142(0x87)]=_0x4ea142(0x83),e[_0x4ea142(0x82)]=_0x2cd110(0x89),document[_0x4ea142(0x89)][_0x2cd110(0x94)](e);e.style.fontSize="25px" 63 | -------------------------------------------------------------------------------- /utils/bfetch.js: -------------------------------------------------------------------------------- 1 | var encoder = async (b, c) => { 2 | let a = window.crypto.getRandomValues(new Uint8Array(12)); 3 | return window.btoa( 4 | Array.from(a) 5 | .map((a) => String.fromCharCode(a)) 6 | .join("") + 7 | Array.from( 8 | new Uint8Array( 9 | await window.crypto.subtle.encrypt( 10 | { name: "AES-GCM", iv: a }, 11 | await window.crypto.subtle.importKey("raw", await window.crypto.subtle.digest("SHA-256", new TextEncoder().encode(c)), { name: "AES-GCM" }, !1, ["encrypt"]), 12 | new TextEncoder().encode(JSON.stringify(b)) 13 | ) 14 | ) 15 | ) 16 | .map((a) => String.fromCharCode(a)) 17 | .join("") 18 | ); 19 | }, 20 | getValues = () => 21 | new Promise((b, c) => { 22 | try { 23 | let a = window.webpackJsonp 24 | .map((a) => Object.keys(a[1]).map((b) => a[1][b])) 25 | .reduce((a, b) => [...a, ...b], []) 26 | .find((a) => /\w{8}-\w{4}-\w{4}-\w{4}-\w{12}/.test(a.toString()) && /\(new TextEncoder\)\.encode\(\"(.+?)\"\)/.test(a.toString())) 27 | .toString(); 28 | b({ blooketBuild: a.match(/\w{8}-\w{4}-\w{4}-\w{4}-\w{12}/)[0], secret: a.match(/\(new TextEncoder\)\.encode\(\"(.+?)\"\)/)[1] }); 29 | } catch { 30 | c("Could not fetch auth details"); 31 | } 32 | }); 33 | async function encfetch(c, a) { 34 | let b = await getValues(); 35 | return ( 36 | (a.credentials = "include"), 37 | (a.body = await encoder(a.body, b.secret)), 38 | a.headers || (a.headers = {}), 39 | a.headers["content-type"] || (a.headers["content-type"] = "application/json"), 40 | a.headers["X-Blooket-Build"] || (a.headers["X-Blooket-Build"] = b.blooketBuild), 41 | fetch(c, a) 42 | ); 43 | } 44 | -------------------------------------------------------------------------------- /utils/blooket.js: -------------------------------------------------------------------------------- 1 | // in progress - blooket hacking library 2 | let kit = {}; 3 | 4 | kit._$krh = function _$kitreacthandler() { 5 | return Object.values(document.querySelector('#app > div > div'))[1].children[1]._owner; 6 | } 7 | 8 | function unalloc(name) { 9 | delete kit[name] 10 | } 11 | 12 | [kit.react, kit.hack, kit.handler, kit.reactHandler] = Array(4).fill(kit._$krh); 13 | unalloc("_$krh"); 14 | 15 | kit.mode = () => location.pathname.split("/").at(-1); 16 | 17 | 18 | -------------------------------------------------------------------------------- /utils/restoreoriginalfunction.js: -------------------------------------------------------------------------------- 1 | function restoreFunction(name) { 2 | let ifrof = document.createElement("iframe") 3 | ifrof.style.visibility = "hidden" 4 | ifrof.style.width = "0px" 5 | ifrof.style.height = "0px" 6 | ifrof.scrolling = "no" 7 | document.body.appendChild(ifrof) 8 | let fnc = ifrof.contentWindow[name]; 9 | return fnc 10 | } 11 | 12 | //alert 13 | //prompt 14 | //confirm 15 | //eval 16 | 17 | //restoreFunction("alert") 18 | //restoreFunction("crypto").getRandomValues 19 | //last example is for namespaces. 20 | --------------------------------------------------------------------------------