diff --git a/autocookieclicker.user.js b/autocookieclicker.user.js index 6acc3f8..7fe8dc1 100644 --- a/autocookieclicker.user.js +++ b/autocookieclicker.user.js @@ -1,7 +1,7 @@ // ==UserScript== // @name Automate CookieClicker // @namespace https://luzifer.io/ -// @version 0.9.2 +// @version 0.9.3 // @description Automate everything! // @author Knut Ahlers // @source https://github.com/Luzifer/automate-cookie-clicker @@ -78,9 +78,20 @@ function getMaxBuy() { return Math.max(Math.ceil((topPurchaseCount + 1) / purchaseSteps), 1) * purchaseSteps; } +function installHelper() { + // Startup notification + let version = GM_info.script.version; + note('Version ' + version + ' loaded.'); + + window.checkCPS = window.setInterval(checkCPS, 1000); + + // Enable automatic purchasing of upgrades / elements + window.autoPurchase = window.setInterval(executeAutoActions, 500); +} + function note(msg, quick = true) { // Icon: img/icons.png 0-based indices - Game.Note("Auto-CookieClicker", msg, [12, 0], quick); + Game.Notify("Auto-CookieClicker", msg, [12, 0], quick); } function upgradeFilter(idx) { @@ -95,14 +106,5 @@ function upgradeFilter(idx) { (function() { 'use strict'; - window.checkCPS = window.setInterval(checkCPS, 1000); - - // Enable automatic purchasing of upgrades / elements - window.autoPurchase = window.setInterval(executeAutoActions, 500); - - window.setTimeout(function() { - // Startup notification - let version = GM_info.script.version; - note('Version ' + version + ' loaded.'); - }, 1000); + window.setTimeout(installHelper, 1000); })();