Skip to content

Instantly share code, notes, and snippets.

@christianrubiales
Last active January 14, 2022 01:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christianrubiales/15a3e6249bb6be1e22c00a604440b67b to your computer and use it in GitHub Desktop.
Save christianrubiales/15a3e6249bb6be1e22c00a604440b67b to your computer and use it in GitHub Desktop.
var ff = JSON.parse(localStorage.getItem("lab"));
ff["money"] = 1e+100;
ff["data"] = 1e+100;
localStorage.setItem("lab", JSON.stringify(ff));
window.location.reload();
// https://bbs.boingboing.net/t/particle-clicker-meth-addictive-supercollider-sim/38724/2
var myInt = setInterval(function() { $('#detector-events').click(); }, 10);
// You can stop the auto-clicking with:
// clearInterval(myInt);
// also use https://gist.github.com/zbitname/19ce4fc3a569b1287ffd
@ParticleClicker
Copy link

Thanks DonaldTsang

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment