Cookie clicker hacks

Choose what level do you want

当前为 2018-02-24 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Cookie clicker hacks
// @version      0.1
// @author       ReF
// @namespace    Cookie clicker hacks
// @description  Choose what level do you want
// @match        http://orteil.dashnet.org/*
// @require      https://code.jquery.com/jquery-3.3.1.js
// @icon         http://images2.wikia.nocookie.net/__cb20130827014914/cookieclicker/images/5/5a/PerfectCookie.png
// @grant        none
// ==/UserScript==

var level = 4000;
function updaAll(poi) {
      Game.Objects['Cursor'].amount = poi;
      Game.Objects['Grandma'].amount = poi;
      Game.Objects['Farm'].amount = poi;
      Game.Objects['Mine'].amount = poi;
      Game.Objects['Factory'].amount = poi;
      Game.Objects['Bank'].amount = poi;
      Game.Objects['Temple'].amount = poi;
      Game.Objects['Wizard tower'].amount = poi;
      Game.Objects['Shipment'].amount = poi;
      Game.Objects['Alchemy lab'].amount = poi;
      Game.Objects['Portal'].amount = poi;
      Game.Objects['Time machine'].amount = poi;
      Game.Objects['Antimatter condenser'].amount = poi;
      Game.Objects['Prism'].amount = poi;
      Game.Objects['Chancemaker'].amount = poi;
    }
    setTimeout(function(){
        updaAll(level);
    }, 1000);