Cookie Clicker Bot

Turn the Cookie Clicker to the Bot! the bot helps you to click fast and buy items

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Cookie Clicker Bot
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Turn the Cookie Clicker to the Bot! the bot helps you to click fast and buy items
// @author       Rickandress
// @match        http://orteil.dashnet.org/experiments/cookie/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    // CCBot by rickandress - Works for Old Cookie Clicker Game
    // CCBot Start
    setInterval(function(){ ClickCookie(); }, 100);
    setInterval(function(){ HoverCookie(); }, 200);
    setInterval(function(){ document.getElementById("buyCursor").click(); }, 3000);
    setInterval(function(){ document.getElementById("buyGrandma").click(); }, 3000);
    setInterval(function(){ document.getElementById("buyFactory").click(); }, 3000);
    setInterval(function(){ document.getElementById("buyMine").click(); }, 3000);
    setInterval(function(){ document.getElementById("buyShipment").click(); }, 3000);
    setInterval(function(){ document.getElementById("buyAlchemy lab").click(); }, 3000);
    setInterval(function(){ document.getElementById("buyPortal").click(); }, 3000);
    setInterval(function(){ document.getElementById("buyTime machine").click(); }, 3000);
    // CCBot End
})();