- ukuw.github.io
-
Joined
Mar 12, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Just Paste this in console while on click-learn.info | |
| fetch('https://gist.githubusercontent.com/ukuw/0a81c5148535a7f9db770c06e643b404/raw/29dfc088fcbb07f140385f2584026cb766eacb7a/AutoDetectModeAutoSolver.js').then(r => r.text()).then(eval); | |
| */ | |
| (function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (async function autoLearn() { | |
| console.log('=== Click & Learn 360 – Lernmodus Auto-Solver gestartet ==='); | |
| console.log('Stoppen: Variable "autoLearnRunning = false" in der Konsole eingeben.'); | |
| window.autoLearnRunning = true; | |
| const delay = ms => new Promise(r => setTimeout(r, ms)); | |
| function waitFor(condFn, timeoutMs = 8000, intervalMs = 150) { | |
| return new Promise(function(resolve) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (async function autoSolve() { | |
| const delay = ms => new Promise(r => setTimeout(r, ms)); | |
| function waitForVisible(selector, timeoutMs = 5000) { | |
| return new Promise(function(resolve) { | |
| const start = Date.now(); | |
| (function check() { | |
| const el = document.querySelector(selector); | |
| if (el && el.offsetParent !== null) return resolve(el); | |
| if (Date.now() - start > timeoutMs) return resolve(null); |