mirror of
https://github.com/Luzifer/automate-cookie-clicker.git
synced 2024-11-09 14:30:08 +00:00
Do upgrades through Game object instead of interface
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
5ca3fcc919
commit
6a19e97ccb
1 changed files with 6 additions and 14 deletions
|
@ -1,7 +1,7 @@
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name Automate CookieClicker
|
// @name Automate CookieClicker
|
||||||
// @namespace https://luzifer.io/
|
// @namespace https://luzifer.io/
|
||||||
// @version 0.18.2
|
// @version 0.18.3
|
||||||
// @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
|
||||||
|
@ -43,10 +43,11 @@ function executeAutoActions() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Look for upgrades being available
|
// Look for upgrades being available
|
||||||
let availableUpgrades = $('.upgrade.enabled').filter(upgradeFilter);
|
let availableUpgrades = Game.UpgradesInStore.filter(obj => obj.canBuy() && !blockingUpgrades.includes(obj.id));
|
||||||
if (availableUpgrades.length > 0) {
|
while (availableUpgrades.length > 0) {
|
||||||
availableUpgrades.click();
|
let upgrade = availableUpgrades[0];
|
||||||
note('Purchased ' + availableUpgrades.length + ' upgrades for you.');
|
upgrade.buy();
|
||||||
|
note('Purchased upgrade ' + upgrade.name + ' for you.');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get the top enabled purchase to be made
|
// Get the top enabled purchase to be made
|
||||||
|
@ -123,15 +124,6 @@ function note(msg, quick = true) {
|
||||||
Game.Notify('Auto-CookieClicker', msg, [12, 0], quick, true);
|
Game.Notify('Auto-CookieClicker', msg, [12, 0], quick, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
function upgradeFilter() {
|
|
||||||
let onClickHandler = $(this).attr('onclick');
|
|
||||||
if (onClickHandler == null) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
let upgradeID = parseInt(onClickHandler.replace(/^.*\[([0-9]+)\].*$/, '$1'));
|
|
||||||
return !blockingUpgrades.includes(upgradeID);
|
|
||||||
}
|
|
||||||
|
|
||||||
(function() {
|
(function() {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue