mirror of
https://github.com/Luzifer/automate-cookie-clicker.git
synced 2024-11-09 14:30:08 +00:00
Click golden cookies
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
c5fd6a765c
commit
95613d5b57
1 changed files with 4 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
// ==UserScript==
|
||||
// @name Automate CookieClicker
|
||||
// @namespace https://luzifer.io/
|
||||
// @version 0.7.4
|
||||
// @version 0.8.0
|
||||
// @description Automate everything!
|
||||
// @author Knut Ahlers <knut@ahlers.me>
|
||||
// @source https://github.com/Luzifer/automate-cookie-clicker
|
||||
|
@ -26,6 +26,9 @@ function autoClick() {
|
|||
}
|
||||
|
||||
function executeAutoActions() {
|
||||
// Click all golden cookies
|
||||
$('.shimmer').click();
|
||||
|
||||
// Look for upgrades being available
|
||||
let availableUpgrades = $('.upgrade.enabled').filter(upgradeFilter);
|
||||
if (availableUpgrades.length > 0) {
|
||||
|
|
Loading…
Reference in a new issue