mirror of
https://github.com/Luzifer/automate-cookie-clicker.git
synced 2024-11-09 22:40:08 +00:00
Show notifications for actions done
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
3d3e9e695d
commit
4ef349e695
1 changed files with 66 additions and 35 deletions
|
@ -1,50 +1,81 @@
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name Automate CookieClicker
|
// @name Automate CookieClicker
|
||||||
// @namespace https://luzifer.io/
|
// @namespace https://luzifer.io/
|
||||||
// @version 0.2.1
|
// @version 0.3.0
|
||||||
// @description Automate everything!
|
// @description Automate everything!
|
||||||
// @author Knut Ahlers <knut@ahlers.me>
|
// @author Knut Ahlers <knut@ahlers.me>
|
||||||
// @match http://orteil.dashnet.org/cookieclicker/
|
// @match http://orteil.dashnet.org/cookieclicker/
|
||||||
// @run-at document-start
|
// @require https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.min.js
|
||||||
// @require https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.min.js
|
// @require https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/js/toastr.min.js
|
||||||
// @updateURL https://gist.github.com/Luzifer/706ea5db3e0a65f1dd142d7afa3aecb0/raw/autocookieclicker.user.js
|
// @updateURL https://gist.github.com/Luzifer/706ea5db3e0a65f1dd142d7afa3aecb0/raw/autocookieclicker.user.js
|
||||||
|
// @grant GM_info
|
||||||
|
// @grant GM_addStyle
|
||||||
// ==/UserScript==
|
// ==/UserScript==
|
||||||
|
|
||||||
function autoClick() { $('#bigCookie').click(); }
|
GM_addStyle('@import url("https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/css/toastr.min.css");');
|
||||||
|
|
||||||
|
function autoClick() {
|
||||||
|
$('#bigCookie').click();
|
||||||
|
}
|
||||||
|
|
||||||
function autoPurchaseUpgrades() {
|
function autoPurchaseUpgrades() {
|
||||||
// Set buying amount to 10 per purchase
|
// Set buying amount to 10 per purchase
|
||||||
$('#storeBulk10').click();
|
$('#storeBulk10').click();
|
||||||
|
|
||||||
// Look for upgrades being available
|
// Look for upgrades being available
|
||||||
let availableUpgrades = $('#upgrades > .upgrade.enabled');
|
let availableUpgrades = $('#upgrades > .upgrade.enabled');
|
||||||
if (availableUpgrades.length > 0) {
|
if (availableUpgrades.length > 0) {
|
||||||
debug(availableUpgrades.length + " upgrades available, buying now...");
|
debug(availableUpgrades.length + " upgrades available, buying now...");
|
||||||
availableUpgrades.click();
|
availableUpgrades.click();
|
||||||
}
|
toastr.info('Purchased ' + availableUpgrades.length + ' upgrades for you.');
|
||||||
|
}
|
||||||
|
|
||||||
// Get the top enabled purchase to be made
|
// Get the top enabled purchase to be made
|
||||||
let topPurchase = $('.product.unlocked').last();
|
let topPurchase = $('.product.unlocked').last();
|
||||||
if (topPurchase.hasClass('enabled')) {
|
if (topPurchase.hasClass('enabled')) {
|
||||||
debug("Auto-Buying: " + topPurchase.find('.title').text());
|
debug("Auto-Buying: " + topPurchase.find('.title').text());
|
||||||
topPurchase.click();
|
topPurchase.click();
|
||||||
} else {
|
toastr.info('Purchased ' + topPurchase.find('.title').text() + ' for you.');
|
||||||
debug("Not enough money to buy top purchase: " + topPurchase.find('.title').text() + " (need " + topPurchase.find('.price').text() + " cookies)");
|
} else {
|
||||||
}
|
debug("Not enough money to buy top purchase: " + topPurchase.find('.title').text() + " (need " + topPurchase.find('.price').text() + " cookies)");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function debug(msg) {
|
function debug(msg) {
|
||||||
console.log("[AutoCookieClicker] " + msg);
|
console.log("[AutoCookieClicker] " + msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
(function() {
|
(function() {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
let cps = parseInt($('#cookies').children('div').text().split(': ')[1]);
|
// Set options for toastr
|
||||||
if (cps == 0) {
|
toastr.options = {
|
||||||
window.autoClicker = window.setInterval(autoClick, 1);
|
"closeButton": false,
|
||||||
}
|
"debug": false,
|
||||||
|
"newestOnTop": false,
|
||||||
|
"progressBar": false,
|
||||||
|
"positionClass": "toast-bottom-right",
|
||||||
|
"preventDuplicates": false,
|
||||||
|
"onclick": null,
|
||||||
|
"showDuration": "300",
|
||||||
|
"hideDuration": "1000",
|
||||||
|
"timeOut": "2000",
|
||||||
|
"extendedTimeOut": "1000",
|
||||||
|
"showEasing": "swing",
|
||||||
|
"hideEasing": "linear",
|
||||||
|
"showMethod": "fadeIn",
|
||||||
|
"hideMethod": "fadeOut"
|
||||||
|
};
|
||||||
|
|
||||||
// Enable automatic purchasing of upgrades / elements
|
let cps = parseInt($('#cookies').children('div').text().split(': ')[1]);
|
||||||
window.autoPurchase = window.setInterval(autoPurchaseUpgrades, 10000);
|
if (cps == 0) {
|
||||||
})();
|
window.autoClicker = window.setInterval(autoClick, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Enable automatic purchasing of upgrades / elements
|
||||||
|
window.autoPurchase = window.setInterval(autoPurchaseUpgrades, 10000);
|
||||||
|
|
||||||
|
// Startup notification
|
||||||
|
let version = GM_info.script.version;
|
||||||
|
toastr.info('Auto-CookieClicker ' + version + ' loaded.');
|
||||||
|
})();
|
||||||
|
|
Loading…
Reference in a new issue