Cookie Clicker Bot

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

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(У мене вже є менеджер скриптів, дайте мені встановити його!)

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.

(I already have a user style manager, let me install it!)

// ==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
})();