Skip to content

Instantly share code, notes, and snippets.

@GeekyDeaks
Last active June 22, 2024 13:20
Show Gist options
  • Save GeekyDeaks/76d39c70b3ec1cc45054076292dff534 to your computer and use it in GitHub Desktop.
Save GeekyDeaks/76d39c70b3ec1cc45054076292dff534 to your computer and use it in GitHub Desktop.
Universal Paperclips Quantum Clicker
let runQClicker = true;
(function qClicker() {
if (!runQClicker) return
let t = 100
let q = qChips.reduce((p, c) => p + c.value, 0)
if (q > 0.01) {
qComp()
t = 1
}
if (swarmGifts >= 3) {
addProc()
addProc()
addMem()
t = 1
}
setTimeout(qClicker, t)
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment