Cookie Clicker Bot

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

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

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