Case Clicker

Simple cheat for Case Clicker, automatically makes money and buys cases. Automatically closes the annoying box after getting a weapon!

当前为 2019-02-13 提交的版本,查看 最新版本

// ==UserScript==
// @name         Case Clicker
// @namespace    https://kingofkfcjamal.github.io/CaseClicker/
// @version      0.31
// @description  Simple cheat for Case Clicker, automatically makes money and buys cases. Automatically closes the annoying box after getting a weapon!
// @author       PixxlMan
// @match        https://kingofkfcjamal.github.io/CaseClicker/
// @grant        none
// ==/UserScript==

setInterval(function () {
    document.getElementById('acceptButton').click();
    document.getElementById('case').click();
    //document.getElementById('upgrade1').click();
    //document.getElementById('upgrade2').click();
    //document.getElementById('upgrade3').click();
},1);

addEventListener("click", myScript);

function myScript() {
    document.getElementById('modalClose').click();
}