mirror of
https://github.com/Luzifer/automate-cookie-clicker.git
synced 2024-12-22 18:21:18 +00:00
Don't cap buys but buy in 50pcs steps
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
17f923aadd
commit
59cfc9f695
1 changed files with 4 additions and 10 deletions
|
@ -1,7 +1,7 @@
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name Automate CookieClicker
|
// @name Automate CookieClicker
|
||||||
// @namespace https://luzifer.io/
|
// @namespace https://luzifer.io/
|
||||||
// @version 0.20.0
|
// @version 0.21.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
|
||||||
|
@ -52,11 +52,11 @@ function executeAutoActions() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get the top enabled purchase to be made
|
// Get the top enabled purchase to be made
|
||||||
let availableProducts = Game.ObjectsById.filter(obj => obj.price < Game.cookies && obj.amount < getMaxBuy());
|
let availableProducts = Game.ObjectsById.filter(obj => obj.price < Game.cookies);
|
||||||
while (availableProducts.length > 0 && Game.buyMode === 1) { // buyMode 1 = buy, -1 = sell
|
while (availableProducts.length > 0 && Game.buyMode === 1) { // buyMode 1 = buy, -1 = sell
|
||||||
let product = availableProducts[availableProducts.length - 1];
|
let product = availableProducts[availableProducts.length - 1];
|
||||||
|
|
||||||
for (let buyAmount = getMaxBuy() - product.amount; buyAmount > 0; buyAmount--) {
|
for (let buyAmount = purchaseSteps - product.amount; buyAmount > 0; buyAmount--) {
|
||||||
if (product.getSumPrice(buyAmount) <= Game.cookies) {
|
if (product.getSumPrice(buyAmount) <= Game.cookies) {
|
||||||
product.buy(buyAmount);
|
product.buy(buyAmount);
|
||||||
note(`Purchased ${buyAmount} ${buyAmount === 1 ? product.name : product.plural} for you.`);
|
note(`Purchased ${buyAmount} ${buyAmount === 1 ? product.name : product.plural} for you.`);
|
||||||
|
@ -64,7 +64,7 @@ function executeAutoActions() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
availableProducts = Game.ObjectsById.filter(obj => obj.price < Game.cookies && obj.amount < getMaxBuy());
|
availableProducts = Game.ObjectsById.filter(obj => obj.price < Game.cookies);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -82,12 +82,6 @@ function controlAutoClicker() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function getMaxBuy() {
|
|
||||||
let topPurchaseCount = Game.ObjectsById[Game.ObjectsN - 1].amount;
|
|
||||||
|
|
||||||
return Math.max(Math.ceil((topPurchaseCount + 1) / purchaseSteps), 1) * purchaseSteps;
|
|
||||||
}
|
|
||||||
|
|
||||||
function hasActiveClickBuff() {
|
function hasActiveClickBuff() {
|
||||||
let hasBuff = false;
|
let hasBuff = false;
|
||||||
for (let key in Game.buffs) {
|
for (let key in Game.buffs) {
|
||||||
|
|
Loading…
Reference in a new issue