mirror of
https://github.com/Luzifer/automate-cookie-clicker.git
synced 2024-11-09 22:40:08 +00:00
This is JS, not Go
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
d3a79a5565
commit
093f537fd0
1 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name Automate CookieClicker
|
// @name Automate CookieClicker
|
||||||
// @namespace https://luzifer.io/
|
// @namespace https://luzifer.io/
|
||||||
// @version 0.9.1
|
// @version 0.9.2
|
||||||
// @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
|
||||||
|
@ -78,7 +78,7 @@ function getMaxBuy() {
|
||||||
return Math.max(Math.ceil((topPurchaseCount + 1) / purchaseSteps), 1) * purchaseSteps;
|
return Math.max(Math.ceil((topPurchaseCount + 1) / purchaseSteps), 1) * purchaseSteps;
|
||||||
}
|
}
|
||||||
|
|
||||||
func note(msg, quick = true) {
|
function note(msg, quick = true) {
|
||||||
// Icon: img/icons.png 0-based indices
|
// Icon: img/icons.png 0-based indices
|
||||||
Game.Note("Auto-CookieClicker", msg, [12, 0], quick);
|
Game.Note("Auto-CookieClicker", msg, [12, 0], quick);
|
||||||
}
|
}
|
||||||
|
@ -100,7 +100,7 @@ function upgradeFilter(idx) {
|
||||||
// Enable automatic purchasing of upgrades / elements
|
// Enable automatic purchasing of upgrades / elements
|
||||||
window.autoPurchase = window.setInterval(executeAutoActions, 500);
|
window.autoPurchase = window.setInterval(executeAutoActions, 500);
|
||||||
|
|
||||||
window.setTimeout(func() {
|
window.setTimeout(function() {
|
||||||
// Startup notification
|
// Startup notification
|
||||||
let version = GM_info.script.version;
|
let version = GM_info.script.version;
|
||||||
note('Version ' + version + ' loaded.');
|
note('Version ' + version + ' loaded.');
|
||||||
|
|
Loading…
Reference in a new issue