Clicking Bad Auto-Clicker

Automagically presses buy/sell buttons on clicking bad!

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.

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

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name         Clicking Bad Auto-Clicker
// @namespace    http://jslifesim.tk
// @version      1.0
// @description  Automagically presses buy/sell buttons on clicking bad!
// @author       andrew65952
// @match        http://clickingbad.nullism.com/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    message("Clicking Bad Hacks Loaded! H-Cookies, J-Stop Cookies, I-Sell, K-Stop Sell"); 
    window.addEventListener("keydown", hacker, false); 
    var autocook; 
    var autosell; 
    function hacker(e) { 
        if (e.keyCode == "72") { 
            autocook = setInterval(function() { 
                document.getElementById("make_btn").click(); 
            },1000/200); 
            message("Auto-Cook: Active"); 
        } else if (e.keyCode == "74") { 
            if (typeof autocook !== undefined) { 
                clearInterval(autocook); 
                message("Auto-Cook: Unactive"); 
            } 
        } else if (e.keyCode == "73") { 
            autosell = setInterval(function() { 
                document.getElementById("sell_btn").click(); 
            }, 1000/200); 
            message("Auto-Sell: Active"); 
        } else if (e.keyCode == "75") { 
            if (typeof autosell !== undefined) { 
                clearInterval(autosell); 
                message("Auto-Sell: Unactive"); 
            } 
        } 
    }
})();