Last active
September 26, 2024 14:04
-
-
Save zbitname/19ce4fc3a569b1287ffd to your computer and use it in GitHub Desktop.
ParticleClicker cheat
This file contains 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
/* | |
Cheat code for http://particle-clicker.web.cern.ch/particle-clicker/ | |
*/ | |
(function(angular) { | |
var e = angular.element; | |
function c() { | |
e('#detector').scope().dc.click(); | |
} | |
function u() { | |
var rcScope = e('#researchContent').scope().rc; | |
rcScope.research.forEach(function(r) { | |
if (rcScope.isAvailable(r)) { | |
rcScope.doResearch(r); | |
} | |
}); | |
var hrScope = e('#hrContent').scope().hrc; | |
hrScope.workers.forEach(function(w) { | |
if (hrScope.isAvailable(w)) { | |
hrScope.hire(w); | |
} | |
}); | |
var ucScope = e('#upgradesContent').scope().uc; | |
ucScope.upgrades.forEach(function(u) { | |
if (ucScope.isAvailable(u)) { | |
ucScope.upgrade(u); | |
} | |
}); | |
} | |
setInterval(c, 10); | |
setInterval(u, 100); | |
})(angular); |
fbffug
here it is without the auto buy
javascript:/*
Cheat code for http://particle-clicker.web.cern.ch/particle-clicker/
*/
(function(angular) {
var e = angular.element;
function c() {
e('#detector').scope().dc.click();
}
setInterval(c, 10);
setInterval(u, 100);
})(angular);
how do i in port
(function(angular) {
var e = angular.element;
function c() {
e('#detector').scope().dc.click();
}
setInterval(c, 10);
setInterval(u, 100);
})(angular);
is there an updated one, because this one is not working at all. I have tried everything this has to offer, and it's still not working. Is there a way to get an update? Please
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
how do you do all this