1
0
Fork 0
mirror of https://github.com/Luzifer/automate-cookie-clicker.git synced 2024-11-08 14:00:12 +00:00

Move const to top level variable

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2018-04-11 22:41:32 +02:00
parent 9b6752a37e
commit b3b713e0de
Signed by: luzifer
GPG key ID: DC2729FDD34BE99E

View file

@ -1,7 +1,7 @@
// ==UserScript==
// @name Automate CookieClicker
// @namespace https://luzifer.io/
// @version 0.6.1
// @version 0.6.2
// @description Automate everything!
// @author Knut Ahlers <knut@ahlers.me>
// @match http://orteil.dashnet.org/cookieclicker/
@ -14,6 +14,8 @@
GM_addStyle('@import url("https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/css/toastr.min.css");');
var purchaseSteps = 50;
function autoClick() {
$('#bigCookie').click();
}
@ -67,7 +69,7 @@ function getMaxBuy() {
topPurchaseCount = parseInt(topPurchaseTextCount);
}
return Math.max(Math.ceil((topPurchaseCount + 1) / 50), 1) * 50;
return Math.max(Math.ceil((topPurchaseCount + 1) / purchaseSteps), 1) * purchaseSteps;
}
(function() {