mirror of
https://github.com/Luzifer/automate-cookie-clicker.git
synced 2024-11-08 14:00:12 +00:00
Auto-Buy in single steps until 50 for all buildings
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
4ef349e695
commit
9a5b1adba5
1 changed files with 10 additions and 11 deletions
|
@ -1,7 +1,7 @@
|
|||
// ==UserScript==
|
||||
// @name Automate CookieClicker
|
||||
// @namespace https://luzifer.io/
|
||||
// @version 0.3.0
|
||||
// @version 0.4.0
|
||||
// @description Automate everything!
|
||||
// @author Knut Ahlers <knut@ahlers.me>
|
||||
// @match http://orteil.dashnet.org/cookieclicker/
|
||||
|
@ -19,9 +19,6 @@ function autoClick() {
|
|||
}
|
||||
|
||||
function autoPurchaseUpgrades() {
|
||||
// Set buying amount to 10 per purchase
|
||||
$('#storeBulk10').click();
|
||||
|
||||
// Look for upgrades being available
|
||||
let availableUpgrades = $('#upgrades > .upgrade.enabled');
|
||||
if (availableUpgrades.length > 0) {
|
||||
|
@ -31,13 +28,15 @@ function autoPurchaseUpgrades() {
|
|||
}
|
||||
|
||||
// Get the top enabled purchase to be made
|
||||
let topPurchase = $('.product.unlocked').last();
|
||||
if (topPurchase.hasClass('enabled')) {
|
||||
debug("Auto-Buying: " + topPurchase.find('.title').text());
|
||||
let topPurchase = $('.product.unlocked.enabled').last();
|
||||
let topPurchaseCount = 0;
|
||||
if (topPurchase.find('.owned').text() != "") {
|
||||
topPurchaseCount = parseInt(topPurchase.find('.owned').text());
|
||||
}
|
||||
if (topPurchaseCount < 50) {
|
||||
debug("Auto-Buying: " + topPurchase.find('.title:first').text());
|
||||
topPurchase.click();
|
||||
toastr.info('Purchased ' + topPurchase.find('.title').text() + ' for you.');
|
||||
} else {
|
||||
debug("Not enough money to buy top purchase: " + topPurchase.find('.title').text() + " (need " + topPurchase.find('.price').text() + " cookies)");
|
||||
toastr.info('Purchased ' + topPurchase.find('.title:first').text() + ' for you.');
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -73,7 +72,7 @@ function debug(msg) {
|
|||
}
|
||||
|
||||
// Enable automatic purchasing of upgrades / elements
|
||||
window.autoPurchase = window.setInterval(autoPurchaseUpgrades, 10000);
|
||||
window.autoPurchase = window.setInterval(autoPurchaseUpgrades, 500);
|
||||
|
||||
// Startup notification
|
||||
let version = GM_info.script.version;
|
||||
|
|
Loading…
Reference in a new issue