mirror of
https://github.com/Luzifer/automate-cookie-clicker.git
synced 2024-11-09 22:40: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==
|
// ==UserScript==
|
||||||
// @name Automate CookieClicker
|
// @name Automate CookieClicker
|
||||||
// @namespace https://luzifer.io/
|
// @namespace https://luzifer.io/
|
||||||
// @version 0.7.4
|
// @version 0.8.0
|
||||||
// @description Automate everything!
|
// @description Automate everything!
|
||||||
// @author Knut Ahlers <knut@ahlers.me>
|
// @author Knut Ahlers <knut@ahlers.me>
|
||||||
// @source https://github.com/Luzifer/automate-cookie-clicker
|
// @source https://github.com/Luzifer/automate-cookie-clicker
|
||||||
|
@ -26,6 +26,9 @@ function autoClick() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function executeAutoActions() {
|
function executeAutoActions() {
|
||||||
|
// Click all golden cookies
|
||||||
|
$('.shimmer').click();
|
||||||
|
|
||||||
// Look for upgrades being available
|
// Look for upgrades being available
|
||||||
let availableUpgrades = $('.upgrade.enabled').filter(upgradeFilter);
|
let availableUpgrades = $('.upgrade.enabled').filter(upgradeFilter);
|
||||||
if (availableUpgrades.length > 0) {
|
if (availableUpgrades.length > 0) {
|
||||||
|
|
Loading…
Reference in a new issue